-
Notifications
You must be signed in to change notification settings - Fork 0
/
template
3338 lines (3338 loc) · 141 KB
/
template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"id": "f6541798-3b2c-4100-bcae-76d1cb181f3b",
"version": "2.0",
"name": "Financial Remedy",
"url": "http://localhost:3000/",
"tests": [{
"id": "e1bcb0c7-2529-4a4b-9523-67b94047312f",
"name": "Create Contested Solicitor",
"commands": [{
"id": "de983dee-cb78-4e6e-b5cf-5e495f66bf70",
"comment": "",
"command": "open",
"target": "/cases",
"targets": [],
"value": ""
}, {
"id": "b639f143-1bb8-4f75-adc4-c1f64b167c6c",
"comment": "",
"command": "setWindowSize",
"target": "1920x970",
"targets": [],
"value": ""
}, {
"id": "6b56b98a-6a0e-4a52-8feb-95f6105d7a08",
"comment": "",
"command": "click",
"target": "linkText=Create case",
"targets": [
["linkText=Create case", "linkText"],
["css=.hmcts-primary-navigation__item:nth-child(2) > .hmcts-primary-navigation__link", "css:finder"],
["xpath=//a[contains(text(),'Create case')]", "xpath:link"],
["xpath=//a[contains(@href, '/cases/case-filter')]", "xpath:href"],
["xpath=//li[2]/a", "xpath:position"],
["xpath=//a[contains(.,'Create case')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "8aeee569-c459-43c5-80c4-f3418469cc85",
"comment": "",
"command": "waitForElementPresent",
"target": "xpath=//select[@id='cc-jurisdiction']/option[@value='DIVORCE']",
"targets": [
["id=cc-jurisdiction", "id"],
["name=jurisdiction", "name"],
["css=#cc-jurisdiction", "css:finder"],
["xpath=//select[@id='cc-jurisdiction']", "xpath:attributes"],
["xpath=//main[@id='content']/div/div/exui-ccd-connector/ccd-create-case-filters/form/div/select", "xpath:idRelative"],
["xpath=//select", "xpath:position"]
],
"value": "10000"
}, {
"id": "c6500813-48fa-4712-8888-5d7e734d42a4",
"comment": "",
"command": "select",
"target": "id=cc-jurisdiction",
"targets": [],
"value": "label=Family Divorce"
}, {
"id": "8da3bb66-3bc7-4c8d-8e5a-be36a27a317b",
"comment": "",
"command": "click",
"target": "id=cc-case-type",
"targets": [
["id=cc-case-type", "id"],
["name=case-type", "name"],
["css=#cc-case-type", "css:finder"],
["xpath=//select[@id='cc-case-type']", "xpath:attributes"],
["xpath=//main[@id='content']/div/div/exui-ccd-connector/ccd-create-case-filters/form/div[2]/select", "xpath:idRelative"],
["xpath=//div[2]/select", "xpath:position"]
],
"value": ""
}, {
"id": "7bef0873-ac06-430c-b1d8-79882d3ca77d",
"comment": "",
"command": "select",
"target": "id=cc-case-type",
"targets": [],
"value": "label=Contested Financial Remedy"
}, {
"id": "97db90eb-1510-4c09-ab2c-30211b012b27",
"comment": "",
"command": "click",
"target": "id=cc-event",
"targets": [
["id=cc-event", "id"],
["name=event", "name"],
["css=#cc-event", "css:finder"],
["xpath=//select[@id='cc-event']", "xpath:attributes"],
["xpath=//main[@id='content']/div/div/exui-ccd-connector/ccd-create-case-filters/form/div[3]/select", "xpath:idRelative"],
["xpath=//div[3]/select", "xpath:position"]
],
"value": ""
}, {
"id": "771a520e-4861-4565-997e-4d53a446d984",
"comment": "",
"command": "select",
"target": "id=cc-event",
"targets": [],
"value": "label=Form A Application"
}, {
"id": "9f33bbd9-b89d-46c2-8098-038607f69788",
"comment": "",
"command": "click",
"target": "xpath=//button[contains(.,'Start')]",
"targets": [
["css=.form-group > .button:nth-child(2)", "css:finder"],
["xpath=//button[@type='submit']", "xpath:attributes"],
["xpath=//main[@id='content']/div/exui-ccd-connector/ccd-case-edit/ccd-case-edit-page/div/form/div/button[2]", "xpath:idRelative"],
["xpath=//button[2]", "xpath:position"],
["xpath=//button[contains(.,'Continue')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "d7cc46a9-4c43-4fff-ac29-efbca8fba984",
"comment": "",
"command": "waitForElementVisible",
"target": "xpath=//h2[contains(.,'Before You Start')]",
"targets": [
["css=h2:nth-child(1)", "css:finder"],
["xpath=//dl[@id='beforeYouStart']/dt/ccd-markdown/div/markdown/h2", "xpath:idRelative"],
["xpath=//markdown/h2", "xpath:position"],
["xpath=//h2[contains(.,'Before You Start')]", "xpath:innerText"]
],
"value": "30000"
}, {
"id": "c776b042-90c4-4b99-9c4f-9358e716099c",
"comment": "",
"command": "click",
"target": "xpath=//button[contains(.,'Continue')]",
"targets": [
["css=.button:nth-child(2)", "css:finder"],
["xpath=//button[@type='submit']", "xpath:attributes"],
["xpath=//main[@id='content']/div/exui-ccd-connector/ccd-case-edit/ccd-case-edit-page/div/form/div/button[2]", "xpath:idRelative"],
["xpath=//button[2]", "xpath:position"],
["xpath=//button[contains(.,'Continue')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "b182bf4a-7e12-4e6c-acd8-a664f2babbd8",
"comment": "",
"command": "runScript",
"target": "window.scrollTo(0,0)",
"targets": [],
"value": ""
}, {
"id": "92193980-fd4e-4d6d-be76-4654c38c5d11",
"comment": "",
"command": "click",
"target": "id=applicantSolicitorName",
"targets": [
["id=applicantSolicitorName", "id"],
["css=#applicantSolicitorName", "css:finder"],
["xpath=//input[@id='applicantSolicitorName']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[4]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//ccd-write-text-field/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "d549c8eb-adda-4790-9fc2-854681fb9659",
"comment": "",
"command": "type",
"target": "id=applicantSolicitorName",
"targets": [
["id=applicantSolicitorName", "id"],
["css=#applicantSolicitorName", "css:finder"],
["xpath=//input[@id='applicantSolicitorName']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[4]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//ccd-write-text-field/div/input", "xpath:position"]
],
"value": "{{applicant-solicitor-name}}"
}, {
"id": "948d65f2-0991-4878-8d3e-d66eecd3e6d8",
"comment": "",
"command": "click",
"target": "id=search-org-text",
"targets": [
["id=search-org-text", "id"],
["css=#search-org-text", "css:finder"],
["xpath=//input[@id='search-org-text']", "xpath:attributes"],
["xpath=//div[@id='ApplicantOrganisationPolicy_ApplicantOrganisationPolicy']/fieldset/ccd-field-write[2]/div/ccd-write-organisation-field/div/fieldset/div/input", "xpath:idRelative"],
["xpath=//fieldset/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "a4ad1f0f-cd0e-441c-9e9f-a9872171b89e",
"comment": "",
"command": "type",
"target": "id=search-org-text",
"targets": [
["id=search-org-text", "id"],
["css=#search-org-text", "css:finder"],
["xpath=//input[@id='search-org-text']", "xpath:attributes"],
["xpath=//div[@id='ApplicantOrganisationPolicy_ApplicantOrganisationPolicy']/fieldset/ccd-field-write[2]/div/ccd-write-organisation-field/div/fieldset/div/input", "xpath:idRelative"],
["xpath=//fieldset/div/input", "xpath:position"]
],
"value": "{{applicant-solicitor-organisation}}"
}, {
"id": "125f5a03-20d0-4f5e-b3e5-b366d8ef2118",
"comment": "",
"command": "click",
"target": "linkText=Select",
"targets": [
["linkText=Select", "linkText"],
["css=.td-select > a", "css:finder"],
["xpath=//a[contains(text(),'Select')]", "xpath:link"],
["xpath=//table[@id='organisation-table']/tbody/tr/td[2]/a", "xpath:idRelative"],
["xpath=//a[contains(@href, 'javascript:void(0);')]", "xpath:href"],
["xpath=//td[2]/a", "xpath:position"],
["xpath=//a[contains(.,'Select')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "a5c0c665-d817-4f08-8c8e-67639e1bc785",
"comment": "",
"command": "click",
"target": "id=applicantSolicitorPhone",
"targets": [
["id=applicantSolicitorPhone", "id"],
["css=#applicantSolicitorPhone", "css:finder"],
["xpath=//input[@id='applicantSolicitorPhone']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[10]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//div[10]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "ee941dcb-2497-463e-8b63-004b0244417a",
"comment": "",
"command": "type",
"target": "id=applicantSolicitorPhone",
"targets": [
["id=applicantSolicitorPhone", "id"],
["css=#applicantSolicitorPhone", "css:finder"],
["xpath=//input[@id='applicantSolicitorPhone']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[10]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//div[10]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:position"]
],
"value": "123"
}, {
"id": "caf7290c-a039-47dd-9c51-7cf23e65ec51",
"comment": "",
"command": "click",
"target": "id=applicantSolicitorEmail",
"targets": [
["id=applicantSolicitorEmail", "id"],
["css=#applicantSolicitorEmail", "css:finder"],
["xpath=//input[@id='applicantSolicitorEmail']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[11]/ccd-field-write/div/ccd-write-email-field/div/input", "xpath:idRelative"],
["xpath=//div[11]/ccd-field-write/div/ccd-write-email-field/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "bd98922a-6b8c-4b28-af10-05701f51c8d1",
"comment": "",
"command": "type",
"target": "id=applicantSolicitorEmail",
"targets": [
["id=applicantSolicitorEmail", "id"],
["css=#applicantSolicitorEmail", "css:finder"],
["xpath=//input[@id='applicantSolicitorEmail']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[11]/ccd-field-write/div/ccd-write-email-field/div/input", "xpath:idRelative"],
["xpath=//div[11]/ccd-field-write/div/ccd-write-email-field/div/input", "xpath:position"]
],
"value": "[email protected]"
}, {
"id": "fe362ba7-b1a1-4964-ae88-a5707e3a4470",
"comment": "",
"command": "click",
"target": "id=applicantSolicitorConsentForEmails_Yes",
"targets": [
["id=applicantSolicitorConsentForEmails_Yes", "id"],
["name=applicantSolicitorConsentForEmails", "name"],
["css=#applicantSolicitorConsentForEmails_Yes", "css:finder"],
["xpath=//input[@id='applicantSolicitorConsentForEmails_Yes']", "xpath:attributes"],
["xpath=//div[@id='applicantSolicitorConsentForEmails_radio']/div/input", "xpath:idRelative"],
["xpath=//div[13]/ccd-field-write/div/ccd-write-yes-no-field/div/fieldset/div/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "12d9bef2-2a9a-4ffb-b151-0343a0bcade9",
"comment": "",
"command": "click",
"target": "xpath=//button[contains(.,'Continue')]",
"targets": [
["css=.form-group > .button:nth-child(2)", "css:finder"],
["xpath=//button[@type='submit']", "xpath:attributes"],
["xpath=//main[@id='content']/div/exui-ccd-connector/ccd-case-edit/ccd-case-edit-page/div/form/div/button[2]", "xpath:idRelative"],
["xpath=//button[2]", "xpath:position"],
["xpath=//button[contains(.,'Continue')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "56978120-5bf9-4e4b-a4d0-ea0ed8c2ac0c",
"comment": "",
"command": "runScript",
"target": "window.scrollTo(0,0)",
"targets": [],
"value": ""
}, {
"id": "85b11855-388b-4bad-9e7e-bde3e3ac86d8",
"comment": "",
"command": "click",
"target": "id=divorceCaseNumber",
"targets": [
["id=divorceCaseNumber", "id"],
["css=#divorceCaseNumber", "css:finder"],
["xpath=//input[@id='divorceCaseNumber']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[2]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//input", "xpath:position"]
],
"value": ""
}, {
"id": "1c9a02a4-e09c-41a8-9d1a-4c6210d59957",
"comment": "",
"command": "type",
"target": "id=divorceCaseNumber",
"targets": [
["id=divorceCaseNumber", "id"],
["css=#divorceCaseNumber", "css:finder"],
["xpath=//input[@id='divorceCaseNumber']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[2]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//input", "xpath:position"]
],
"value": "LV18J81000"
}, {
"id": "bdf4e607-db5e-4778-a936-56880eff9b3e",
"comment": "",
"command": "click",
"target": "id=dateOfMarriage-day",
"targets": [
["id=dateOfMarriage-day", "id"],
["name=dateOfMarriage-day", "name"],
["css=#dateOfMarriage-day", "css:finder"],
["xpath=//input[@id='dateOfMarriage-day']", "xpath:attributes"],
["xpath=//div[@id='dateOfMarriage']/fieldset/cut-date-input/div/div/input", "xpath:idRelative"],
["xpath=//cut-date-input/div/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "b85f5677-1620-4e4e-9e55-441f23a781c5",
"comment": "",
"command": "type",
"target": "id=dateOfMarriage-day",
"targets": [
["id=dateOfMarriage-day", "id"],
["name=dateOfMarriage-day", "name"],
["css=#dateOfMarriage-day", "css:finder"],
["xpath=//input[@id='dateOfMarriage-day']", "xpath:attributes"],
["xpath=//div[@id='dateOfMarriage']/fieldset/cut-date-input/div/div/input", "xpath:idRelative"],
["xpath=//cut-date-input/div/div/input", "xpath:position"]
],
"value": "01"
}, {
"id": "56ddcb59-240a-4c15-83f2-ec2475fc5857",
"comment": "",
"command": "type",
"target": "id=dateOfMarriage-month",
"targets": [
["id=dateOfMarriage-month", "id"],
["name=dateOfMarriage-month", "name"],
["css=#dateOfMarriage-month", "css:finder"],
["xpath=//input[@id='dateOfMarriage-month']", "xpath:attributes"],
["xpath=//div[@id='dateOfMarriage']/fieldset/cut-date-input/div/div[2]/input", "xpath:idRelative"],
["xpath=//cut-date-input/div/div[2]/input", "xpath:position"]
],
"value": "01"
}, {
"id": "fe3d2222-9511-4828-9574-d382a6adc115",
"comment": "",
"command": "type",
"target": "id=dateOfMarriage-year",
"targets": [
["id=dateOfMarriage-year", "id"],
["name=dateOfMarriage-year", "name"],
["css=#dateOfMarriage-year", "css:finder"],
["xpath=//input[@id='dateOfMarriage-year']", "xpath:attributes"],
["xpath=//div[@id='dateOfMarriage']/fieldset/cut-date-input/div/div[3]/input", "xpath:idRelative"],
["xpath=//div[3]/input", "xpath:position"]
],
"value": "2024"
}, {
"id": "e02687d9-6bc3-4ba7-b3de-e584daba8f6e",
"comment": "",
"command": "click",
"target": "id=divorcePetitionIssuedDate-day",
"targets": [
["id=divorcePetitionIssuedDate-day", "id"],
["name=divorcePetitionIssuedDate-day", "name"],
["css=#divorcePetitionIssuedDate-day", "css:finder"],
["xpath=//input[@id='divorcePetitionIssuedDate-day']", "xpath:attributes"],
["xpath=//div[@id='divorcePetitionIssuedDate']/fieldset/cut-date-input/div/div/input", "xpath:idRelative"],
["xpath=//div[6]/ccd-field-write/div/ccd-write-date-container-field/ccd-write-date-field/div/fieldset/cut-date-input/div/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "60e609c8-bca7-4d4a-9947-2dba8584f008",
"comment": "",
"command": "type",
"target": "id=divorcePetitionIssuedDate-day",
"targets": [
["id=divorcePetitionIssuedDate-day", "id"],
["name=divorcePetitionIssuedDate-day", "name"],
["css=#divorcePetitionIssuedDate-day", "css:finder"],
["xpath=//input[@id='divorcePetitionIssuedDate-day']", "xpath:attributes"],
["xpath=//div[@id='divorcePetitionIssuedDate']/fieldset/cut-date-input/div/div/input", "xpath:idRelative"],
["xpath=//div[6]/ccd-field-write/div/ccd-write-date-container-field/ccd-write-date-field/div/fieldset/cut-date-input/div/div/input", "xpath:position"]
],
"value": "01"
}, {
"id": "e51db8a1-f174-4461-9ddd-2d7b45f732b9",
"comment": "",
"command": "type",
"target": "id=divorcePetitionIssuedDate-month",
"targets": [
["id=divorcePetitionIssuedDate-month", "id"],
["name=divorcePetitionIssuedDate-month", "name"],
["css=#divorcePetitionIssuedDate-month", "css:finder"],
["xpath=//input[@id='divorcePetitionIssuedDate-month']", "xpath:attributes"],
["xpath=//div[@id='divorcePetitionIssuedDate']/fieldset/cut-date-input/div/div[2]/input", "xpath:idRelative"],
["xpath=//div[6]/ccd-field-write/div/ccd-write-date-container-field/ccd-write-date-field/div/fieldset/cut-date-input/div/div[2]/input", "xpath:position"]
],
"value": "01"
}, {
"id": "9e1c3000-6a80-4f17-92f2-f60268c89534",
"comment": "",
"command": "type",
"target": "id=divorcePetitionIssuedDate-year",
"targets": [
["id=divorcePetitionIssuedDate-year", "id"],
["name=divorcePetitionIssuedDate-year", "name"],
["css=#divorcePetitionIssuedDate-year", "css:finder"],
["xpath=//input[@id='divorcePetitionIssuedDate-year']", "xpath:attributes"],
["xpath=//div[@id='divorcePetitionIssuedDate']/fieldset/cut-date-input/div/div[3]/input", "xpath:idRelative"],
["xpath=//div[6]/ccd-field-write/div/ccd-write-date-container-field/ccd-write-date-field/div/fieldset/cut-date-input/div/div[3]/input", "xpath:position"]
],
"value": "2024"
}, {
"id": "b28f1021-83bc-4131-8224-af748ba6e1d7",
"comment": "",
"command": "click",
"target": "id=nameOfCourtDivorceCentre",
"targets": [
["id=nameOfCourtDivorceCentre", "id"],
["css=#nameOfCourtDivorceCentre", "css:finder"],
["xpath=//input[@id='nameOfCourtDivorceCentre']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[7]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//div[7]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "08a474b7-21f8-456c-8aa4-7c6bcaf3f542",
"comment": "",
"command": "type",
"target": "id=nameOfCourtDivorceCentre",
"targets": [
["id=nameOfCourtDivorceCentre", "id"],
["css=#nameOfCourtDivorceCentre", "css:finder"],
["xpath=//input[@id='nameOfCourtDivorceCentre']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[7]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//div[7]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:position"]
],
"value": "The Local Divorce Court"
}, {
"id": "8f0ff6af-66ef-435d-a0fd-158c1d542512",
"comment": "",
"command": "click",
"target": "id=divorceStageReached",
"targets": [
["id=divorceStageReached", "id"],
["css=#divorceStageReached", "css:finder"],
["xpath=//select[@id='divorceStageReached']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[8]/ccd-field-write/div/ccd-write-fixed-list-field/div/select", "xpath:idRelative"],
["xpath=//select", "xpath:position"]
],
"value": ""
}, {
"id": "c38f65b5-0316-437f-8690-8972964e6384",
"comment": "",
"command": "select",
"target": "id=divorceStageReached",
"targets": [],
"value": "label=Decree Nisi / Conditional Order"
}, {
"id": "6f063f26-cdd8-42a5-ac1a-a306001159bb",
"comment": "",
"command": "click",
"target": "id=divorceUploadEvidence1",
"targets": [
["id=divorceUploadEvidence1", "id"],
["css=#divorceUploadEvidence1", "css:finder"],
["xpath=//input[@id='divorceUploadEvidence1']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[9]/ccd-field-write/div/ccd-write-document-field/div/div[2]/input", "xpath:idRelative"],
["xpath=//ccd-write-document-field/div/div[2]/input", "xpath:position"]
],
"value": ""
}, {
"id": "23ddef3f-62e8-45cb-aa87-87ff14651da3",
"comment": "",
"command": "type",
"target": "id=divorceUploadEvidence1",
"targets": [
["id=divorceUploadEvidence1", "id"],
["css=#divorceUploadEvidence1", "css:finder"],
["xpath=//input[@id='divorceUploadEvidence1']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[9]/ccd-field-write/div/ccd-write-document-field/div/div[2]/input", "xpath:idRelative"],
["xpath=//ccd-write-document-field/div/div[2]/input", "xpath:position"]
],
"value": "{{divorce-evidence-upload-file}}"
}, {
"id": "37b387e2-df5f-457d-8c0d-be6c804817c8",
"comment": "",
"command": "waitForElementNotEditable",
"target": "css=button[aria-label=\"Cancel upload\"]",
"targets": [
["css=.error-message", "css:finder"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[9]/ccd-field-write/div/ccd-write-document-field/div/span", "xpath:idRelative"],
["xpath=//ccd-write-document-field/div/span", "xpath:position"],
["xpath=//span[contains(.,'Uploading...')]", "xpath:innerText"]
],
"value": "30000"
}, {
"id": "a0ec337b-e7cf-449e-bfe6-f604b1a8ae66",
"comment": "",
"command": "click",
"target": "id=divorceDecreeNisiDate-day",
"targets": [
["id=divorceDecreeNisiDate-day", "id"],
["name=divorceDecreeNisiDate-day", "name"],
["css=#divorceDecreeNisiDate-day", "css:finder"],
["xpath=//input[@id='divorceDecreeNisiDate-day']", "xpath:attributes"],
["xpath=//div[@id='divorceDecreeNisiDate']/fieldset/cut-date-input/div/div/input", "xpath:idRelative"],
["xpath=//div[10]/ccd-field-write/div/ccd-write-date-container-field/ccd-write-date-field/div/fieldset/cut-date-input/div/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "f01af576-7e75-4fdb-8c23-19edb12160fb",
"comment": "",
"command": "type",
"target": "id=divorceDecreeNisiDate-day",
"targets": [
["id=divorceDecreeNisiDate-day", "id"],
["name=divorceDecreeNisiDate-day", "name"],
["css=#divorceDecreeNisiDate-day", "css:finder"],
["xpath=//input[@id='divorceDecreeNisiDate-day']", "xpath:attributes"],
["xpath=//div[@id='divorceDecreeNisiDate']/fieldset/cut-date-input/div/div/input", "xpath:idRelative"],
["xpath=//div[10]/ccd-field-write/div/ccd-write-date-container-field/ccd-write-date-field/div/fieldset/cut-date-input/div/div/input", "xpath:position"]
],
"value": "01"
}, {
"id": "c1d304f1-751a-484f-bb70-cce1347780de",
"comment": "",
"command": "type",
"target": "id=divorceDecreeNisiDate-month",
"targets": [
["id=divorceDecreeNisiDate-month", "id"],
["name=divorceDecreeNisiDate-month", "name"],
["css=#divorceDecreeNisiDate-month", "css:finder"],
["xpath=//input[@id='divorceDecreeNisiDate-month']", "xpath:attributes"],
["xpath=//div[@id='divorceDecreeNisiDate']/fieldset/cut-date-input/div/div[2]/input", "xpath:idRelative"],
["xpath=//div[10]/ccd-field-write/div/ccd-write-date-container-field/ccd-write-date-field/div/fieldset/cut-date-input/div/div[2]/input", "xpath:position"]
],
"value": "01"
}, {
"id": "5ecf3f17-d146-4216-9d36-317912c9cb76",
"comment": "",
"command": "type",
"target": "id=divorceDecreeNisiDate-year",
"targets": [
["id=divorceDecreeNisiDate-year", "id"],
["name=divorceDecreeNisiDate-year", "name"],
["css=#divorceDecreeNisiDate-year", "css:finder"],
["xpath=//input[@id='divorceDecreeNisiDate-year']", "xpath:attributes"],
["xpath=//div[@id='divorceDecreeNisiDate']/fieldset/cut-date-input/div/div[3]/input", "xpath:idRelative"],
["xpath=//div[10]/ccd-field-write/div/ccd-write-date-container-field/ccd-write-date-field/div/fieldset/cut-date-input/div/div[3]/input", "xpath:position"]
],
"value": "2024"
}, {
"id": "06d45538-4e1d-4a73-8bd4-614714ccfd92",
"comment": "",
"command": "click",
"target": "xpath=//button[@type='submit']",
"targets": [
["css=.button:nth-child(2)", "css:finder"],
["xpath=//button[@type='submit']", "xpath:attributes"],
["xpath=//main[@id='content']/div/exui-ccd-connector/ccd-case-edit/ccd-case-edit-page/div/form/div/button[2]", "xpath:idRelative"],
["xpath=//button[2]", "xpath:position"],
["xpath=//button[contains(.,'Continue')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "7a89620e-e614-44c3-bdf7-73a54fbb0e40",
"comment": "",
"command": "runScript",
"target": "window.scrollTo(0,0)",
"targets": [],
"value": ""
}, {
"id": "ff30e2f1-7889-4f8b-8d78-646d9dd8bb1a",
"comment": "",
"command": "click",
"target": "id=applicantFMName",
"targets": [
["id=applicantFMName", "id"],
["css=#applicantFMName", "css:finder"],
["xpath=//input[@id='applicantFMName']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[2]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//input", "xpath:position"]
],
"value": ""
}, {
"id": "5ee951f7-c63d-4659-b434-7355c7029b38",
"comment": "",
"command": "type",
"target": "id=applicantFMName",
"targets": [
["id=applicantFMName", "id"],
["css=#applicantFMName", "css:finder"],
["xpath=//input[@id='applicantFMName']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[2]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//input", "xpath:position"]
],
"value": "{{applicant-first-name}}"
}, {
"id": "1d189432-95c3-41ca-b76d-e69bc90fdc14",
"comment": "",
"command": "type",
"target": "id=applicantLName",
"targets": [
["id=applicantLName", "id"],
["css=#applicantLName", "css:finder"],
["xpath=//input[@id='applicantLName']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[3]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//div[3]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:position"]
],
"value": "{{applicant-last-name}}"
}, {
"id": "0177c851-fb00-41c4-a11c-beea0ff6232c",
"comment": "",
"command": "click",
"target": "id=applicantAddress_applicantAddress_postcodeInput",
"targets": [
["id=applicantAddress_applicantAddress_postcodeInput", "id"],
["name=postcode", "name"],
["css=#applicantAddress_applicantAddress_postcodeInput", "css:finder"],
["xpath=//input[@id='applicantAddress_applicantAddress_postcodeInput']", "xpath:attributes"],
["xpath=//div[@id='applicantAddress_applicantAddress_postcodeLookup']/input", "xpath:idRelative"],
["xpath=//div/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "fd40cb17-e313-47d8-a4e9-e3571ebddeb7",
"comment": "",
"command": "type",
"target": "id=applicantAddress_applicantAddress_postcodeInput",
"targets": [
["id=applicantAddress_applicantAddress_postcodeInput", "id"],
["name=postcode", "name"],
["css=#applicantAddress_applicantAddress_postcodeInput", "css:finder"],
["xpath=//input[@id='applicantAddress_applicantAddress_postcodeInput']", "xpath:attributes"],
["xpath=//div[@id='applicantAddress_applicantAddress_postcodeLookup']/input", "xpath:idRelative"],
["xpath=//div/div/input", "xpath:position"]
],
"value": "{{applicant-postcode}}"
}, {
"id": "61578923-24a0-4602-8ecf-e9ac1b94c792",
"comment": "",
"command": "click",
"target": "xpath=//button[contains(.,'Find address')]",
"targets": [
["css=.button-30", "css:finder"],
["xpath=//button[@type='button']", "xpath:attributes"],
["xpath=//div[@id='applicantAddress_applicantAddress_postcodeLookup']/button", "xpath:idRelative"],
["xpath=//button", "xpath:position"],
["xpath=//button[contains(.,'Find address')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "0f7a4542-dfe5-4b97-ba7c-e8546fec3d28",
"comment": "",
"command": "waitForElementPresent",
"target": "xpath=//option[contains(text(),\"s found\")]",
"targets": [
["id=applicantAddress_applicantAddress_addressList", "id"],
["name=address", "name"],
["css=#applicantAddress_applicantAddress_addressList", "css:finder"],
["xpath=//select[@id='applicantAddress_applicantAddress_addressList']", "xpath:attributes"],
["xpath=//div[@id='selectAddress']/select", "xpath:idRelative"],
["xpath=//select", "xpath:position"]
],
"value": "10000"
}, {
"id": "f6e6cf53-bc0e-4aec-bf9f-1c9238510d25",
"comment": "",
"command": "storeText",
"target": "xpath=//select[@id='applicantAddress_applicantAddress_addressList']/option[2]",
"targets": [],
"value": "applicantAddress"
}, {
"id": "6e298cfb-1a65-4dc7-b8db-c43c212ecbf7",
"comment": "",
"command": "select",
"target": "id=applicantAddress_applicantAddress_addressList",
"targets": [],
"value": "${applicantAddress}"
}, {
"id": "18b3c604-cac9-457d-b5bc-0325a68d2327",
"comment": "",
"command": "click",
"target": "id=applicantAddressConfidential_No",
"targets": [
["id=applicantAddressConfidential_No", "id"],
["css=#applicantAddressConfidential_No", "css:finder"],
["xpath=//input[@id='applicantAddressConfidential_No']", "xpath:attributes"],
["xpath=//div[@id='applicantAddressConfidential_radio']/div[2]/input", "xpath:idRelative"],
["xpath=//div[2]/input", "xpath:position"]
],
"value": ""
}, {
"id": "d4e4340e-e86c-426e-b731-3186770e3b8c",
"comment": "",
"command": "click",
"target": "xpath=//button[contains(.,'Continue')]",
"targets": [
["css=.button:nth-child(2)", "css:finder"],
["xpath=//button[@type='submit']", "xpath:attributes"],
["xpath=//main[@id='content']/div/exui-ccd-connector/ccd-case-edit/ccd-case-edit-page/div/form/div/button[2]", "xpath:idRelative"],
["xpath=//button[2]", "xpath:position"],
["xpath=//button[contains(.,'Continue')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "651772a8-6bf6-47a1-9e00-eebb7362c7c3",
"comment": "",
"command": "runScript",
"target": "window.scrollTo(0,0)",
"targets": [],
"value": ""
}, {
"id": "ae87c57e-16d3-416b-ab95-9ef003edc7e2",
"comment": "",
"command": "click",
"target": "id=respondentFMName",
"targets": [
["id=respondentFMName", "id"],
["css=#respondentFMName", "css:finder"],
["xpath=//input[@id='respondentFMName']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[2]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//input", "xpath:position"]
],
"value": ""
}, {
"id": "3fa54144-6f80-44af-b981-e115e3eec7d2",
"comment": "",
"command": "type",
"target": "id=respondentFMName",
"targets": [
["id=respondentFMName", "id"],
["css=#respondentFMName", "css:finder"],
["xpath=//input[@id='respondentFMName']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[2]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//input", "xpath:position"]
],
"value": "{{respondent-first-name}}"
}, {
"id": "4bc1f169-b92d-4176-8abd-0455b0eeaf6e",
"comment": "",
"command": "click",
"target": "id=respondentLName",
"targets": [
["id=respondentLName", "id"],
["css=#respondentLName", "css:finder"],
["xpath=//input[@id='respondentLName']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[3]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//div[3]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "d48254f1-01e0-49a1-8dd4-a5e44b659931",
"comment": "",
"command": "type",
"target": "id=respondentLName",
"targets": [
["id=respondentLName", "id"],
["css=#respondentLName", "css:finder"],
["xpath=//input[@id='respondentLName']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[3]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//div[3]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:position"]
],
"value": "{{respondent-last-name}}"
}, {
"id": "908bbbfa-99ae-49a8-90c1-fde926396784",
"comment": "",
"command": "click",
"target": "xpath=//button[contains(.,'Continue')]",
"targets": [
["css=.button:nth-child(2)", "css:finder"],
["xpath=//button[@type='submit']", "xpath:attributes"],
["xpath=//main[@id='content']/div/exui-ccd-connector/ccd-case-edit/ccd-case-edit-page/div/form/div/button[2]", "xpath:idRelative"],
["xpath=//button[2]", "xpath:position"],
["xpath=//button[contains(.,'Continue')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "bec7341c-0bb3-4542-b9bf-caf833830334",
"comment": "",
"command": "runScript",
"target": "window.scrollTo(0,0)",
"targets": [],
"value": ""
}, {
"id": "36529bbd-e610-4b21-861b-f9e8b04bcec8",
"comment": "",
"command": "click",
"target": "id=respondentRepresented_Yes",
"targets": [
["id=respondentRepresented_Yes", "id"],
["name=respondentRepresented", "name"],
["css=#respondentRepresented_Yes", "css:finder"],
["xpath=//input[@id='respondentRepresented_Yes']", "xpath:attributes"],
["xpath=//div[@id='respondentRepresented_radio']/div/input", "xpath:idRelative"],
["xpath=//input", "xpath:position"]
],
"value": ""
}, {
"id": "07e3ef0a-504e-4288-b485-be299022a0bd",
"comment": "",
"command": "click",
"target": "id=search-org-text",
"targets": [
["id=search-org-text", "id"],
["css=#search-org-text", "css:finder"],
["xpath=//input[@id='search-org-text']", "xpath:attributes"],
["xpath=//div[@id='RespondentOrganisationPolicy_RespondentOrganisationPolicy']/fieldset/ccd-field-write/div/ccd-write-organisation-field/div/fieldset/div/input", "xpath:idRelative"],
["xpath=//fieldset/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "1bc40136-b596-4910-ae49-7e25b88dd026",
"comment": "",
"command": "type",
"target": "id=search-org-text",
"targets": [
["id=search-org-text", "id"],
["css=#search-org-text", "css:finder"],
["xpath=//input[@id='search-org-text']", "xpath:attributes"],
["xpath=//div[@id='RespondentOrganisationPolicy_RespondentOrganisationPolicy']/fieldset/ccd-field-write/div/ccd-write-organisation-field/div/fieldset/div/input", "xpath:idRelative"],
["xpath=//fieldset/div/input", "xpath:position"]
],
"value": "{{respondent-solicitor-organisation}}"
}, {
"id": "16a92ed0-b72e-4623-b1b5-082bacd8e287",
"comment": "",
"command": "click",
"target": "linkText=Select",
"targets": [
["linkText=Select", "linkText"],
["css=.td-select > a", "css:finder"],
["xpath=//a[contains(text(),'Select')]", "xpath:link"],
["xpath=//table[@id='organisation-table']/tbody/tr/td[2]/a", "xpath:idRelative"],
["xpath=//a[contains(@href, 'javascript:void(0);')]", "xpath:href"],
["xpath=//td[2]/a", "xpath:position"],
["xpath=//a[contains(.,'Select')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "554ac1de-9bf2-49b4-84d4-1e1a8d1c12ba",
"comment": "",
"command": "click",
"target": "id=rSolicitorFirm",
"targets": [
["id=rSolicitorFirm", "id"],
["css=#rSolicitorFirm", "css:finder"],
["xpath=//input[@id='rSolicitorFirm']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[7]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//div[7]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "f5b67556-ea2b-407a-8cff-6d22715d6216",
"comment": "",
"command": "type",
"target": "id=rSolicitorFirm",
"targets": [
["id=rSolicitorFirm", "id"],
["css=#rSolicitorFirm", "css:finder"],
["xpath=//input[@id='rSolicitorFirm']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[7]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//div[7]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:position"]
],
"value": "Respondent Solicitor Firm"
}, {
"id": "b2bfd882-77c9-4ac2-a6cd-c901a480aa43",
"comment": "",
"command": "click",
"target": "id=rSolicitorAddress_rSolicitorAddress_postcodeInput",
"targets": [
["id=rSolicitorAddress_rSolicitorAddress_postcodeInput", "id"],
["name=postcode", "name"],
["css=#rSolicitorAddress_rSolicitorAddress_postcodeInput", "css:finder"],
["xpath=//input[@id='rSolicitorAddress_rSolicitorAddress_postcodeInput']", "xpath:attributes"],
["xpath=//div[@id='rSolicitorAddress_rSolicitorAddress_postcodeLookup']/input", "xpath:idRelative"],
["xpath=//div/div/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "28293065-3517-4a81-ac45-8f3f5a2b5a6d",
"comment": "",
"command": "type",
"target": "id=rSolicitorAddress_rSolicitorAddress_postcodeInput",
"targets": [
["id=rSolicitorAddress_rSolicitorAddress_postcodeInput", "id"],
["name=postcode", "name"],
["css=#rSolicitorAddress_rSolicitorAddress_postcodeInput", "css:finder"],
["xpath=//input[@id='rSolicitorAddress_rSolicitorAddress_postcodeInput']", "xpath:attributes"],
["xpath=//div[@id='rSolicitorAddress_rSolicitorAddress_postcodeLookup']/input", "xpath:idRelative"],
["xpath=//div/div/div/input", "xpath:position"]
],
"value": "{{respondent-solicitor-postcode}}"
}, {
"id": "703dadbf-f53d-4669-b7de-0bc442479716",
"comment": "",
"command": "click",
"target": "xpath=//button[contains(.,'Find address')]",
"targets": [
["css=#rSolicitorAddress_rSolicitorAddress_postcodeLookup > .button", "css:finder"],
["xpath=(//button[@type='button'])[2]", "xpath:attributes"],
["xpath=//div[@id='rSolicitorAddress_rSolicitorAddress_postcodeLookup']/button", "xpath:idRelative"],
["xpath=//div/div/div/button", "xpath:position"],
["xpath=//button[contains(.,'Find address')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "9879947e-21a8-449a-9d5a-7297ee01711b",
"comment": "",
"command": "waitForElementPresent",
"target": "xpath=//option[contains(text(),\"s found\")]",
"targets": [
["id=applicantAddress_applicantAddress_addressList", "id"],
["name=address", "name"],
["css=#applicantAddress_applicantAddress_addressList", "css:finder"],
["xpath=//select[@id='applicantAddress_applicantAddress_addressList']", "xpath:attributes"],
["xpath=//div[@id='selectAddress']/select", "xpath:idRelative"],
["xpath=//select", "xpath:position"]
],
"value": "10000"
}, {
"id": "d8bd5ad4-7534-47b2-a2fb-bffc1c34a545",
"comment": "",
"command": "storeText",
"target": "xpath=//select[@id='rSolicitorAddress_rSolicitorAddress_addressList']/option[2]",
"targets": [],
"value": "respondentSolicitorAddress"
}, {
"id": "cbc96e03-f071-4d61-8c8f-938f37632807",
"comment": "",
"command": "select",
"target": "id=rSolicitorAddress_rSolicitorAddress_addressList",
"targets": [],
"value": "${respondentSolicitorAddress}"
}, {
"id": "330485ec-8d71-4b33-a913-68ceed5ed1ab",
"comment": "",
"command": "click",
"target": "id=rSolicitorPhone",
"targets": [
["id=rSolicitorPhone", "id"],
["css=#rSolicitorPhone", "css:finder"],
["xpath=//input[@id='rSolicitorPhone']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[10]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//div[10]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "48891f39-7a4e-4cc4-ad1c-ab5bfc01784e",
"comment": "",
"command": "type",
"target": "id=rSolicitorPhone",
"targets": [
["id=rSolicitorPhone", "id"],
["css=#rSolicitorPhone", "css:finder"],
["xpath=//input[@id='rSolicitorPhone']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[10]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:idRelative"],
["xpath=//div[10]/ccd-field-write/div/ccd-write-text-field/div/input", "xpath:position"]
],
"value": "123"
}, {
"id": "c886ded4-8efe-4ca8-a3c2-402fae1ec480",
"comment": "",
"command": "click",
"target": "id=rSolicitorEmail",
"targets": [
["id=rSolicitorEmail", "id"],
["css=#rSolicitorEmail", "css:finder"],
["xpath=//input[@id='rSolicitorEmail']", "xpath:attributes"],
["xpath=//ccd-case-edit-form[@id='caseEditForm']/div[11]/ccd-field-write/div/ccd-write-email-field/div/input", "xpath:idRelative"],
["xpath=//div[11]/ccd-field-write/div/ccd-write-email-field/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "f784aab3-b5e6-442b-aa24-6b9034865b10",
"comment": "",