-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-dataverse-test.side
1837 lines (1837 loc) · 79.4 KB
/
sample-dataverse-test.side
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": "0c86970c-305d-4921-ae05-148a0e099381",
"version": "2.0",
"name": "localhost:8080",
"url": "http://localhost:8080",
"tests": [{
"id": "111e5b2e-b2a7-47ee-b300-e9deb9a0e6dd",
"name": "Creating and publishing a dataverse",
"commands": [{
"id": "828358cc-0a96-4f42-bc07-784f9b51e49e",
"comment": "",
"command": "open",
"target": "/dataverse.xhtml",
"targets": [],
"value": ""
}, {
"id": "83b2426d-97f3-477e-a920-169e1d67c563",
"comment": "",
"command": "setWindowSize",
"target": "1200x1065",
"targets": [],
"value": ""
}, {
"id": "6fc77fd8-c45e-4a10-840d-a5acda282f5e",
"comment": "",
"command": "click",
"target": "css=.btn-group:nth-child(2) > .btn",
"targets": [
["css=.btn-group:nth-child(2) > .btn", "css:finder"],
["xpath=(//button[@type='button'])[7]", "xpath:attributes"],
["xpath=//form[@id='addDataForm']/div/button", "xpath:idRelative"],
["xpath=//form/div/button", "xpath:position"],
["xpath=//button[contains(.,' Add Data ')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "583c4ca4-1d18-4b0a-af4a-09f9635f2efa",
"comment": "",
"command": "click",
"target": "linkText=New Dataverse",
"targets": [
["linkText=New Dataverse", "linkText"],
["css=.open li:nth-child(1) > a", "css:finder"],
["xpath=(//a[contains(text(),'New Dataverse')])[2]", "xpath:link"],
["xpath=//form[@id='addDataForm']/div/ul/li/a", "xpath:idRelative"],
["xpath=(//a[contains(@href, '/dataverse.xhtml?ownerId=1')])[2]", "xpath:href"],
["xpath=//form/div/ul/li/a", "xpath:position"]
],
"value": ""
}, {
"id": "9cdf7c3b-9c9c-4796-99a2-cc1f230f7767",
"comment": "",
"command": "click",
"target": "css=html",
"targets": [
["css=html", "css:finder"],
["xpath=//html", "xpath:position"]
],
"value": ""
}, {
"id": "4cd34bcb-1487-43f5-b540-284f0018716e",
"comment": "",
"command": "type",
"target": "id=dataverseForm:name",
"targets": [
["id=dataverseForm:name", "id"],
["name=dataverseForm:name", "name"],
["css=#dataverseForm\\3Aname", "css:finder"],
["xpath=//input[@id='dataverseForm:name']", "xpath:attributes"],
["xpath=//form[@id='dataverseForm']/div[3]/div/div/input", "xpath:idRelative"],
["xpath=//div/div/input", "xpath:position"]
],
"value": "dataverse Test"
}, {
"id": "e78f1f94-c3db-49f8-87f9-3e98fbf99b3d",
"comment": "",
"command": "click",
"target": "id=dataverseForm:identifier",
"targets": [
["id=dataverseForm:identifier", "id"],
["name=dataverseForm:identifier", "name"],
["css=#dataverseForm\\3Aidentifier", "css:finder"],
["xpath=//input[@id='dataverseForm:identifier']", "xpath:attributes"],
["xpath=//form[@id='dataverseForm']/div[4]/div/div/div/input", "xpath:idRelative"],
["xpath=//div[4]/div/div/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "5c38d4ae-9727-48c0-b30b-bde7309ce342",
"comment": "",
"command": "type",
"target": "id=dataverseForm:identifier",
"targets": [
["id=dataverseForm:identifier", "id"],
["name=dataverseForm:identifier", "name"],
["css=#dataverseForm\\3Aidentifier", "css:finder"],
["xpath=//input[@id='dataverseForm:identifier']", "xpath:attributes"],
["xpath=//form[@id='dataverseForm']/div[4]/div/div/div/input", "xpath:idRelative"],
["xpath=//div[4]/div/div/div/input", "xpath:position"]
],
"value": "test1"
}, {
"id": "32198fa6-db19-4621-8917-c22a7f8a1d88",
"comment": "",
"command": "click",
"target": "id=dataverseForm:dataverseCategory",
"targets": [
["id=dataverseForm:dataverseCategory", "id"],
["name=dataverseForm:dataverseCategory", "name"],
["css=#dataverseForm\\3A dataverseCategory", "css:finder"],
["xpath=//select[@id='dataverseForm:dataverseCategory']", "xpath:attributes"],
["xpath=//form[@id='dataverseForm']/div[5]/div/div/div/div/select", "xpath:idRelative"],
["xpath=//select", "xpath:position"]
],
"value": ""
}, {
"id": "cf2cdde8-b217-46a6-9b50-4fd8b07d0641",
"comment": "",
"command": "select",
"target": "id=dataverseForm:dataverseCategory",
"targets": [],
"value": "label=Journal"
}, {
"id": "9de3a6f4-0ab8-4c6f-9ad8-264f8246a7c2",
"comment": "",
"command": "click",
"target": "id=dataverseForm:metadataRoot",
"targets": [
["id=dataverseForm:metadataRoot", "id"],
["name=dataverseForm:metadataRoot", "name"],
["css=#dataverseForm\\3AmetadataRoot", "css:finder"],
["xpath=//input[@id='dataverseForm:metadataRoot']", "xpath:attributes"],
["xpath=//div[@id='dataverseForm:optionBlock_content']/div/div/div[2]/label/input", "xpath:idRelative"],
["xpath=//label/input", "xpath:position"]
],
"value": ""
}, {
"id": "3a93bc9e-393d-4395-be48-c404626a747f",
"comment": "",
"command": "click",
"target": "id=2",
"targets": [
["id=2", "id"],
["name=dataverseForm:j_idt277:1:mdbSelectOptional", "name"],
["css=#\\32", "css:finder"],
["xpath=//input[@id='2']", "xpath:attributes"],
["xpath=//div[@id='dataverseForm:optionBlock_content']/div/div/div[2]/div[2]/label/input", "xpath:idRelative"],
["xpath=//div[2]/div[2]/label/input", "xpath:position"]
],
"value": ""
}, {
"id": "c89de7eb-a3f3-45f2-9d98-163309291a92",
"comment": "",
"command": "click",
"target": "id=dataverseForm:save",
"targets": [
["id=dataverseForm:save", "id"],
["name=dataverseForm:save", "name"],
["css=#dataverseForm\\3Asave", "css:finder"],
["xpath=//button[@id='dataverseForm:save']", "xpath:attributes"],
["xpath=//form[@id='dataverseForm']/div[8]/button", "xpath:idRelative"],
["xpath=//div[8]/button", "xpath:position"],
["xpath=//button[contains(.,'Create Dataverse')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "626198ee-ec28-4541-8984-8c755c11c3d1",
"comment": "",
"command": "click",
"target": "name=dataverseForm:j_idt331",
"targets": [
["name=dataverseForm:j_idt331", "name"],
["css=.col-xs-12 > .btn-group > .btn", "css:finder"],
["xpath=//button[@name='dataverseForm:j_idt331']", "xpath:attributes"],
["xpath=//div[@id='actionButtonBlock']/div/div/div[2]/button", "xpath:idRelative"],
["xpath=//div[2]/button", "xpath:position"],
["xpath=//button[contains(.,' Publish')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "42c4d916-168b-4662-b662-ff8981ec8a7b",
"comment": "",
"command": "mouseOver",
"target": "name=dataverseForm:j_idt331",
"targets": [
["name=dataverseForm:j_idt331", "name"],
["css=.col-xs-12 > .btn-group > .btn", "css:finder"],
["xpath=//button[@name='dataverseForm:j_idt331']", "xpath:attributes"],
["xpath=//div[@id='actionButtonBlock']/div/div/div[2]/button", "xpath:idRelative"],
["xpath=//div[2]/button", "xpath:position"],
["xpath=//button[contains(.,' Publish')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "7f8e2b8e-1f75-4b29-94de-782758ac2a19",
"comment": "",
"command": "mouseOut",
"target": "name=dataverseForm:j_idt331",
"targets": [
["name=dataverseForm:j_idt331", "name"],
["css=.col-xs-12 > .btn-group > .btn", "css:finder"],
["xpath=//button[@name='dataverseForm:j_idt331']", "xpath:attributes"],
["xpath=//div[@id='actionButtonBlock']/div/div/div[2]/button", "xpath:idRelative"],
["xpath=//div[2]/button", "xpath:position"],
["xpath=//button[contains(.,' Publish')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "91c94102-be43-4b4d-b5c9-0ce0a6135e98",
"comment": "",
"command": "click",
"target": "css=#dataverseForm\\3Aj_idt405 > .ui-button-text",
"targets": [
["css=#dataverseForm\\3Aj_idt405 > .ui-button-text", "css:finder"],
["xpath=//button[@id='dataverseForm:j_idt405']/span", "xpath:idRelative"],
["xpath=//div[3]/div[2]/div/button/span", "xpath:position"],
["xpath=//span[contains(.,'Continue')]", "xpath:innerText"]
],
"value": ""
}]
}, {
"id": "e8fc5097-9866-4f20-b0cc-2102e0197ea5",
"name": "Basic search",
"commands": [{
"id": "5b04dc77-3a8f-4a67-94bb-0f41481a0815",
"comment": "",
"command": "open",
"target": "/",
"targets": [],
"value": ""
}, {
"id": "0a09af4c-bd17-41d5-b931-5aa9764b5405",
"comment": "",
"command": "setWindowSize",
"target": "1200x1065",
"targets": [],
"value": ""
}, {
"id": "57170666-522a-42e1-bcaf-95df211aa49f",
"comment": "",
"command": "click",
"target": "id=j_idt414:searchBasic",
"targets": [
["id=j_idt414:searchBasic", "id"],
["name=j_idt414:searchBasic", "name"],
["css=#j_idt414\\3AsearchBasic", "css:finder"],
["xpath=//input[@id='j_idt414:searchBasic']", "xpath:attributes"],
["xpath=//form[@id='j_idt414']/input[2]", "xpath:idRelative"],
["xpath=//div/div/form/input[2]", "xpath:position"]
],
"value": ""
}, {
"id": "04a69212-3db1-4e60-8ce6-2ad86f992f7d",
"comment": "",
"command": "type",
"target": "id=j_idt414:searchBasic",
"targets": [
["id=j_idt414:searchBasic", "id"],
["name=j_idt414:searchBasic", "name"],
["css=#j_idt414\\3AsearchBasic", "css:finder"],
["xpath=//input[@id='j_idt414:searchBasic']", "xpath:attributes"],
["xpath=//form[@id='j_idt414']/input[2]", "xpath:idRelative"],
["xpath=//div/div/form/input[2]", "xpath:position"]
],
"value": "metrics"
}, {
"id": "001089f2-2357-4cbd-ae33-3ffdee45e281",
"comment": "",
"command": "click",
"target": "css=#j_idt414\\3Asearchbutton > .glyphicon",
"targets": [
["css=#j_idt414\\3Asearchbutton > .glyphicon", "css:finder"],
["xpath=//a[@id='j_idt414:searchbutton']/span", "xpath:idRelative"],
["xpath=//form/a/span", "xpath:position"]
],
"value": ""
}, {
"id": "43fb6564-e88a-4fa6-b2b8-059a7658e61d",
"comment": "",
"command": "click",
"target": "css=.search-term-match:nth-child(1)",
"targets": [
["css=.search-term-match:nth-child(1)", "css:finder"],
["xpath=//table[@id='resultsTable']/tbody/tr/td/div/div/a/span/span", "xpath:idRelative"],
["xpath=//td/div/div/a/span/span", "xpath:position"]
],
"value": ""
}]
}, {
"id": "d8be68a4-38c0-4d49-b751-c8dbc45126a1",
"name": "Create and publish dataset",
"commands": [{
"id": "3c8f4fdc-7e85-4952-ba67-d2357ec8e3b3",
"comment": "",
"command": "open",
"target": "/",
"targets": [],
"value": ""
}, {
"id": "0fb92ea2-1d24-4a6b-9f6b-b9fc305bbeba",
"comment": "",
"command": "setWindowSize",
"target": "1200x1065",
"targets": [],
"value": ""
}, {
"id": "41c930c8-3eca-4d14-a8d6-3d8d0c8aeffd",
"comment": "",
"command": "click",
"target": "css=tr:nth-child(3) .card-title-icon-block > a > span",
"targets": [
["css=tr:nth-child(3) .card-title-icon-block > a > span", "css:finder"],
["xpath=//table[@id='resultsTable']/tbody/tr[3]/td/div/div/a/span", "xpath:idRelative"],
["xpath=//tr[3]/td/div/div/a/span", "xpath:position"],
["xpath=//span[contains(.,'Manchester Dataverse')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "98c22ca3-66cc-4b2d-bdb4-d2e64c7b6d35",
"comment": "",
"command": "click",
"target": "css=#addDataForm .btn",
"targets": [
["css=#addDataForm .btn", "css:finder"],
["xpath=(//button[@type='button'])[8]", "xpath:attributes"],
["xpath=//form[@id='addDataForm']/div/button", "xpath:idRelative"],
["xpath=//form/div/button", "xpath:position"],
["xpath=//button[contains(.,' Add Data ')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "68d16cb8-acf1-4b60-8710-ff7685b6aaf2",
"comment": "",
"command": "click",
"target": "linkText=New Dataset",
"targets": [
["linkText=New Dataset", "linkText"],
["css=.open li:nth-child(2) > a", "css:finder"],
["xpath=(//a[contains(text(),'New Dataset')])[2]", "xpath:link"],
["xpath=//form[@id='addDataForm']/div/ul/li[2]/a", "xpath:idRelative"],
["xpath=//a[contains(@href, '/dataset.xhtml?ownerId=18')]", "xpath:href"],
["xpath=//form/div/ul/li[2]/a", "xpath:position"]
],
"value": ""
}, {
"id": "2da23c4a-ab1f-4751-bbb3-f6084c953221",
"comment": "",
"command": "click",
"target": "id=datasetForm:j_idt457:0:j_idt460:0:j_idt467:0:j_idt469:0:inputText",
"targets": [
["id=datasetForm:j_idt457:0:j_idt460:0:j_idt467:0:j_idt469:0:inputText", "id"],
["name=datasetForm:j_idt457:0:j_idt460:0:j_idt467:0:j_idt469:0:inputText", "name"],
["css=#datasetForm\\3Aj_idt457\\3A 0\\3Aj_idt460\\3A 0\\3Aj_idt467\\3A 0\\3Aj_idt469\\3A 0\\3AinputText", "css:finder"],
["xpath=//input[@id='datasetForm:j_idt457:0:j_idt460:0:j_idt467:0:j_idt469:0:inputText']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:j_idt457:0:j_idt460:0:editPrimitiveValueFragment']/div/div/div/div/input", "xpath:idRelative"],
["xpath=//div/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "c112687e-2d49-4432-9001-bcabeb900cad",
"comment": "",
"command": "mouseOver",
"target": "id=replicationDataButton",
"targets": [
["id=replicationDataButton", "id"],
["css=#replicationDataButton", "css:finder"],
["xpath=//input[@id='replicationDataButton']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:j_idt457:0:j_idt460:0:editPrimitiveValueFragment']/div/div/div/div/input[2]", "xpath:idRelative"],
["xpath=//div/input[2]", "xpath:position"]
],
"value": ""
}, {
"id": "4f3ca5bc-0d1a-4525-8d29-575efdec9146",
"comment": "",
"command": "type",
"target": "id=datasetForm:j_idt457:0:j_idt460:0:j_idt467:0:j_idt469:0:inputText",
"targets": [
["id=datasetForm:j_idt457:0:j_idt460:0:j_idt467:0:j_idt469:0:inputText", "id"],
["name=datasetForm:j_idt457:0:j_idt460:0:j_idt467:0:j_idt469:0:inputText", "name"],
["css=#datasetForm\\3Aj_idt457\\3A 0\\3Aj_idt460\\3A 0\\3Aj_idt467\\3A 0\\3Aj_idt469\\3A 0\\3AinputText", "css:finder"],
["xpath=//input[@id='datasetForm:j_idt457:0:j_idt460:0:j_idt467:0:j_idt469:0:inputText']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:j_idt457:0:j_idt460:0:editPrimitiveValueFragment']/div/div/div/div/input", "xpath:idRelative"],
["xpath=//div/div/input", "xpath:position"]
],
"value": "new dataset1"
}, {
"id": "485a00f3-ff06-4fb5-972b-f4e235739319",
"comment": "",
"command": "click",
"target": "id=datasetForm:j_idt457:0:j_idt460:7:j_idt499:0:j_idt501:0:description",
"targets": [
["id=datasetForm:j_idt457:0:j_idt460:7:j_idt499:0:j_idt501:0:description", "id"],
["name=datasetForm:j_idt457:0:j_idt460:7:j_idt499:0:j_idt501:0:description", "name"],
["css=#datasetForm\\3Aj_idt457\\3A 0\\3Aj_idt460\\3A 7\\3Aj_idt499\\3A 0\\3Aj_idt501\\3A 0\\3A description", "css:finder"],
["xpath=//textarea[@id='datasetForm:j_idt457:0:j_idt460:7:j_idt499:0:j_idt501:0:description']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:j_idt457:0:j_idt460:7:editCompoundValueFragment']/div[2]/div/div/textarea", "xpath:idRelative"],
["xpath=//textarea", "xpath:position"]
],
"value": ""
}, {
"id": "8c07bca6-a8f3-4dd8-a43a-2e83b8f7af92",
"comment": "",
"command": "type",
"target": "id=datasetForm:j_idt457:0:j_idt460:7:j_idt499:0:j_idt501:0:description",
"targets": [
["id=datasetForm:j_idt457:0:j_idt460:7:j_idt499:0:j_idt501:0:description", "id"],
["name=datasetForm:j_idt457:0:j_idt460:7:j_idt499:0:j_idt501:0:description", "name"],
["css=#datasetForm\\3Aj_idt457\\3A 0\\3Aj_idt460\\3A 7\\3Aj_idt499\\3A 0\\3Aj_idt501\\3A 0\\3A description", "css:finder"],
["xpath=//textarea[@id='datasetForm:j_idt457:0:j_idt460:7:j_idt499:0:j_idt501:0:description']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:j_idt457:0:j_idt460:7:editCompoundValueFragment']/div[2]/div/div/textarea", "xpath:idRelative"],
["xpath=//textarea", "xpath:position"]
],
"value": "type in a description here."
}, {
"id": "5f430550-ace5-4c65-aa6f-f38f204e6cdd",
"comment": "",
"command": "click",
"target": "css=.ui-state-hover > .ui-chkbox-icon",
"targets": [
["css=.ui-state-hover > .ui-chkbox-icon", "css:finder"],
["xpath=//table[@id='datasetForm:j_idt457:0:j_idt460:8:j_idt467:0:unique2']/tbody/tr[14]/td/div/div[2]/span", "xpath:idRelative"],
["xpath=//tr[14]/td/div/div[2]/span", "xpath:position"]
],
"value": ""
}, {
"id": "1fb0a5d5-80bc-4461-9f74-54c54f809cc8",
"comment": "",
"command": "click",
"target": "css=#datasetForm\\3Asave > .ui-button-text",
"targets": [
["css=#datasetForm\\3Asave > .ui-button-text", "css:finder"],
["xpath=//button[@id='datasetForm:save']/span", "xpath:idRelative"],
["xpath=//div[7]/button/span", "xpath:position"],
["xpath=//span[contains(.,'Save Dataset')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "5e59c233-4fc4-4f7f-b0a1-fd6ab4467927",
"comment": "",
"command": "mouseOver",
"target": "id=datasetForm:j_idt216",
"targets": [
["id=datasetForm:j_idt216", "id"],
["linkText=Share", "linkText"],
["css=#datasetForm\\3Aj_idt216", "css:finder"],
["xpath=//a[@id='datasetForm:j_idt216']", "xpath:attributes"],
["xpath=//div[@id='datasetButtonBar']/a[2]", "xpath:idRelative"],
["xpath=(//a[contains(@href, '#')])[8]", "xpath:href"],
["xpath=//a[2]", "xpath:position"],
["xpath=//a[contains(.,' Share')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "20671104-4837-49ef-875d-7a7b56bc8a69",
"comment": "",
"command": "mouseOut",
"target": "id=datasetForm:j_idt216",
"targets": [
["id=datasetForm:j_idt216", "id"],
["linkText=Share", "linkText"],
["css=#datasetForm\\3Aj_idt216", "css:finder"],
["xpath=//a[@id='datasetForm:j_idt216']", "xpath:attributes"],
["xpath=//div[@id='datasetButtonBar']/a[2]", "xpath:idRelative"],
["xpath=(//a[contains(@href, '#')])[8]", "xpath:href"],
["xpath=//a[2]", "xpath:position"],
["xpath=//a[contains(.,' Share')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "b7993021-fe76-4287-9a24-201ba8341452",
"comment": "",
"command": "click",
"target": "id=datasetForm:j_idt220",
"targets": [
["id=datasetForm:j_idt220", "id"],
["linkText=Publish", "linkText"],
["css=#datasetForm\\3Aj_idt220", "css:finder"],
["xpath=//a[@id='datasetForm:j_idt220']", "xpath:attributes"],
["xpath=//div[@id='actionButtonBlock']/div/div/div[2]/a", "xpath:idRelative"],
["xpath=(//a[contains(@href, '#')])[9]", "xpath:href"],
["xpath=//div/div/div/div/div[2]/a", "xpath:position"],
["xpath=//a[contains(.,' Publish')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "9079ee4c-0988-4ae5-bc44-f0db4c75032d",
"comment": "",
"command": "click",
"target": "css=#datasetForm\\3Aj_idt2077 > .ui-button-text",
"targets": [
["css=#datasetForm\\3Aj_idt2077 > .ui-button-text", "css:finder"],
["xpath=//button[@id='datasetForm:j_idt2077']/span", "xpath:idRelative"],
["xpath=//div[34]/div[2]/div/button/span", "xpath:position"]
],
"value": ""
}]
}, {
"id": "8f9e5f01-8865-4fc1-9c5e-09cac387365c",
"name": "adding files to a dataset",
"commands": [{
"id": "8f219ee6-3bbd-4d16-af64-88656f5b788a",
"comment": "",
"command": "open",
"target": "/",
"targets": [],
"value": ""
}, {
"id": "502a72bf-194f-4a10-8051-dd57ab411c5d",
"comment": "",
"command": "setWindowSize",
"target": "1200x1065",
"targets": [],
"value": ""
}, {
"id": "b837d5f7-4d50-4538-894d-c11ec56ad7b3",
"comment": "",
"command": "click",
"target": "css=tr:nth-child(7) .card-title-icon-block > a > span",
"targets": [
["css=tr:nth-child(7) .card-title-icon-block > a > span", "css:finder"],
["xpath=//table[@id='resultsTable']/tbody/tr[7]/td/div/div/a/span", "xpath:idRelative"],
["xpath=//tr[7]/td/div/div/a/span", "xpath:position"],
["xpath=//span[contains(.,'Dataverse IRC Metrics')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "dcb71c1c-4c2d-4a2d-91ad-3040ef8f0944",
"comment": "",
"command": "click",
"target": "id=datasetForm:tabView:filesTable:uploadFile-s-Link",
"targets": [
["id=datasetForm:tabView:filesTable:uploadFile-s-Link", "id"],
["css=#datasetForm\\3AtabView\\3A filesTable\\3AuploadFile-s-Link", "css:finder"],
["xpath=//span[@id='datasetForm:tabView:filesTable:uploadFile-s-Link']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:filesTable:uploadComputeBlock']/a/span[2]", "xpath:idRelative"],
["xpath=//div/a/span[2]", "xpath:position"],
["xpath=//span[contains(.,'Upload Files')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "74bd7039-cf04-4aab-8aaa-9c56a2bcb62d",
"comment": "",
"command": "click",
"target": "id=datasetForm:fileUpload_input",
"targets": [
["id=datasetForm:fileUpload_input", "id"],
["name=datasetForm:fileUpload_input", "name"],
["css=#datasetForm\\3A fileUpload_input", "css:finder"],
["xpath=//input[@id='datasetForm:fileUpload_input']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:fileUpload']/div/span/input", "xpath:idRelative"],
["xpath=//span/input", "xpath:position"]
],
"value": ""
}, {
"id": "92dbb34e-f9b0-40f6-920e-4fe52337a8b4",
"comment": "",
"command": "click",
"target": "id=savebutton",
"targets": [
["id=savebutton", "id"],
["css=#savebutton", "css:finder"],
["xpath=//button[@id='savebutton']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:filesButtons']/div/button", "xpath:idRelative"],
["xpath=//form/div[2]/div/div/button", "xpath:position"]
],
"value": ""
}]
}, {
"id": "4a851453-3eac-433a-af64-741b846619c4",
"name": "editing metadata fields",
"commands": [{
"id": "6f37a2f5-f321-4255-ad03-da3a53f591a6",
"comment": "",
"command": "open",
"target": "/",
"targets": [],
"value": ""
}, {
"id": "15936bfa-0c51-4602-9ed0-fcc2d00c683e",
"comment": "",
"command": "setWindowSize",
"target": "1200x1065",
"targets": [],
"value": ""
}, {
"id": "bc3c3a23-8137-4585-9f11-ef44bfa2d237",
"comment": "",
"command": "click",
"target": "css=tr:nth-child(3) .card-title-icon-block > a > span",
"targets": [
["css=tr:nth-child(3) .card-title-icon-block > a > span", "css:finder"],
["xpath=//table[@id='resultsTable']/tbody/tr[3]/td/div/div/a/span", "xpath:idRelative"],
["xpath=//tr[3]/td/div/div/a/span", "xpath:position"],
["xpath=//span[contains(.,'Dataset with Shapefiles, Images, and Tabular Files')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "3e3482c9-c891-4326-9a9c-0567ac871569",
"comment": "",
"command": "click",
"target": "css=#editDataSet > .glyphicon",
"targets": [
["css=#editDataSet > .glyphicon", "css:finder"],
["xpath=//button[@id='editDataSet']/span", "xpath:idRelative"],
["xpath=//div[2]/button/span", "xpath:position"]
],
"value": ""
}, {
"id": "84322f37-b301-4ea6-9730-78ea44b35bd0",
"comment": "",
"command": "click",
"target": "id=datasetForm:editMetadata",
"targets": [
["id=datasetForm:editMetadata", "id"],
["linkText=Metadata", "linkText"],
["css=#datasetForm\\3A editMetadata", "css:finder"],
["xpath=//a[contains(text(),'Metadata')]", "xpath:link"],
["xpath=//a[@id='datasetForm:editMetadata']", "xpath:attributes"],
["xpath=//div[@id='actionButtonBlock']/div/div/div[2]/ul/li[2]/a", "xpath:idRelative"],
["xpath=(//a[contains(@href, '#')])[10]", "xpath:href"],
["xpath=//div/div/div[2]/ul/li[2]/a", "xpath:position"],
["xpath=//a[contains(.,'Metadata')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "6a98d20d-1c10-4ff3-af6f-1454ae9dee7c",
"comment": "",
"command": "click",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:2:j_idt1340:0:j_idt1342:0:inputText",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:2:j_idt1340:0:j_idt1342:0:inputText", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:2:j_idt1340:0:j_idt1342:0:inputText", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 2\\3Aj_idt1340\\3A 0\\3Aj_idt1342\\3A 0\\3AinputText", "css:finder"],
["xpath=//input[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:2:j_idt1340:0:j_idt1342:0:inputText']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:2:editPrimitiveValueFragment']/div/div/div/div/input", "xpath:idRelative"],
["xpath=//div[3]/div/div/div/div/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "8c10247c-1f40-4867-a20d-9abc310e67ad",
"comment": "",
"command": "type",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:2:j_idt1340:0:j_idt1342:0:inputText",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:2:j_idt1340:0:j_idt1342:0:inputText", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:2:j_idt1340:0:j_idt1342:0:inputText", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 2\\3Aj_idt1340\\3A 0\\3Aj_idt1342\\3A 0\\3AinputText", "css:finder"],
["xpath=//input[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:2:j_idt1340:0:j_idt1342:0:inputText']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:2:editPrimitiveValueFragment']/div/div/div/div/input", "xpath:idRelative"],
["xpath=//div[3]/div/div/div/div/div/input", "xpath:position"]
],
"value": "Shapefiles, Images and Tabular Files Dataset"
}, {
"id": "01a7b6f1-2624-4abb-9a42-b5f8f3dc2d48",
"comment": "",
"command": "click",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:0:j_idt1374:0:description",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:0:j_idt1374:0:description", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:0:j_idt1374:0:description", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 7\\3Aj_idt1372\\3A 0\\3Aj_idt1374\\3A 0\\3A description", "css:finder"],
["xpath=//textarea[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:0:j_idt1374:0:description']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:7:editCompoundValueFragment']/div[2]/div/div/textarea", "xpath:idRelative"],
["xpath=//textarea", "xpath:position"]
],
"value": ""
}, {
"id": "82a74946-6707-4702-a863-a18327f37075",
"comment": "",
"command": "type",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:0:j_idt1374:0:description",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:0:j_idt1374:0:description", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:0:j_idt1374:0:description", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 7\\3Aj_idt1372\\3A 0\\3Aj_idt1374\\3A 0\\3A description", "css:finder"],
["xpath=//textarea[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:0:j_idt1374:0:description']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:7:editCompoundValueFragment']/div[2]/div/div/textarea", "xpath:idRelative"],
["xpath=//textarea", "xpath:position"]
],
"value": "Test dataset with shapefiles."
}, {
"id": "d85ee791-289e-4cd7-a522-9b97eb488b24",
"comment": "",
"command": "click",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:1:j_idt1374:0:description",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:1:j_idt1374:0:description", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:1:j_idt1374:0:description", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 7\\3Aj_idt1372\\3A 1\\3Aj_idt1374\\3A 0\\3A description", "css:finder"],
["xpath=//textarea[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:1:j_idt1374:0:description']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:7:editCompoundValueFragment']/div[2]/div[3]/div/textarea", "xpath:idRelative"],
["xpath=//div[3]/div/textarea", "xpath:position"]
],
"value": ""
}, {
"id": "25b125eb-104f-4035-aef8-c72fae33186b",
"comment": "",
"command": "type",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:1:j_idt1374:0:description",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:1:j_idt1374:0:description", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:1:j_idt1374:0:description", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 7\\3Aj_idt1372\\3A 1\\3Aj_idt1374\\3A 0\\3A description", "css:finder"],
["xpath=//textarea[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:7:j_idt1372:1:j_idt1374:0:description']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:7:editCompoundValueFragment']/div[2]/div[3]/div/textarea", "xpath:idRelative"],
["xpath=//div[3]/div/textarea", "xpath:position"]
],
"value": "Adding a second description."
}, {
"id": "efaf4ea2-766f-467e-af44-f838f2b96adf",
"comment": "",
"command": "click",
"target": "css=.ui-state-hover > .ui-chkbox-icon",
"targets": [
["css=.ui-state-hover > .ui-chkbox-icon", "css:finder"],
["xpath=//table[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:8:j_idt1340:0:unique2']/tbody/tr[15]/td/div/div[2]/span", "xpath:idRelative"],
["xpath=//tr[15]/td/div/div[2]/span", "xpath:position"]
],
"value": ""
}, {
"id": "93de3c73-b1d7-42cc-8d5c-feb68764f529",
"comment": "",
"command": "click",
"target": "css=.ui-state-hover > .ui-chkbox-icon",
"targets": [
["css=.ui-state-hover > .ui-chkbox-icon", "css:finder"],
["xpath=//table[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:13:j_idt1340:0:unique2']/tbody/tr[40]/td/div/div[2]/span", "xpath:idRelative"],
["xpath=//tr[40]/td/div/div[2]/span", "xpath:position"]
],
"value": ""
}, {
"id": "7afcafff-7af2-4f2f-867f-bfcd55b7bde1",
"comment": "",
"command": "runScript",
"target": "window.scrollTo(0,2466)",
"targets": [],
"value": ""
}, {
"id": "62dea6e4-efbe-4853-a4a7-c6cf5a5ddd53",
"comment": "",
"command": "click",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:0:inputText",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:0:inputText", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:0:inputText", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 19\\3Aj_idt1372\\3A 0\\3Aj_idt1374\\3A 0\\3AinputText", "css:finder"],
["xpath=//input[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:0:inputText']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:editCompoundValueFragment']/div[2]/div/div/input", "xpath:idRelative"],
["xpath=//div[20]/div/div[2]/div/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "07a8604a-a937-47af-9955-8638d23ad8f5",
"comment": "",
"command": "type",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:0:inputText",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:0:inputText", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:0:inputText", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 19\\3Aj_idt1372\\3A 0\\3Aj_idt1374\\3A 0\\3AinputText", "css:finder"],
["xpath=//input[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:0:inputText']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:editCompoundValueFragment']/div[2]/div/div/input", "xpath:idRelative"],
["xpath=//div[20]/div/div[2]/div/div/input", "xpath:position"]
],
"value": "DANS"
}, {
"id": "a9d47869-7c15-48ab-ab8c-b19ce4811bc2",
"comment": "",
"command": "click",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:1:inputText",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:1:inputText", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:1:inputText", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 19\\3Aj_idt1372\\3A 0\\3Aj_idt1374\\3A 1\\3AinputText", "css:finder"],
["xpath=//input[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:1:inputText']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:editCompoundValueFragment']/div[2]/div/div[2]/input", "xpath:idRelative"],
["xpath=//div[20]/div/div[2]/div/div[2]/input", "xpath:position"]
],
"value": ""
}, {
"id": "75225812-7ae5-41b4-9d10-f47506c82048",
"comment": "",
"command": "mouseOver",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1406",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1406", "id"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 19\\3Aj_idt1372\\3A 0\\3Aj_idt1406", "css:finder"],
["xpath=//a[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1406']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:editCompoundValueFragment']/div[2]/div[2]/a", "xpath:idRelative"],
["xpath=(//a[contains(@href, '#')])[21]", "xpath:href"],
["xpath=//div[20]/div/div[2]/div[2]/a", "xpath:position"]
],
"value": ""
}, {
"id": "fe05f3b7-7182-469a-b17a-454c96fb0db8",
"comment": "",
"command": "mouseOut",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1406",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1406", "id"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 19\\3Aj_idt1372\\3A 0\\3Aj_idt1406", "css:finder"],
["xpath=//a[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1406']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:editCompoundValueFragment']/div[2]/div[2]/a", "xpath:idRelative"],
["xpath=(//a[contains(@href, '#')])[21]", "xpath:href"],
["xpath=//div[20]/div/div[2]/div[2]/a", "xpath:position"]
],
"value": ""
}, {
"id": "4927bb09-6c3e-4471-abf0-de9f7926d5b8",
"comment": "",
"command": "type",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:1:inputText",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:1:inputText", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:1:inputText", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 19\\3Aj_idt1372\\3A 0\\3Aj_idt1374\\3A 1\\3AinputText", "css:finder"],
["xpath=//input[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:j_idt1372:0:j_idt1374:1:inputText']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:19:editCompoundValueFragment']/div[2]/div/div[2]/input", "xpath:idRelative"],
["xpath=//div[20]/div/div[2]/div/div[2]/input", "xpath:position"]
],
"value": "KNAW"
}, {
"id": "652389bc-bc04-47f0-b773-0bb64afa4804",
"comment": "",
"command": "click",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:20:j_idt1340:0:j_idt1342:0:inputText",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:20:j_idt1340:0:j_idt1342:0:inputText", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:20:j_idt1340:0:j_idt1342:0:inputText", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 20\\3Aj_idt1340\\3A 0\\3Aj_idt1342\\3A 0\\3AinputText", "css:finder"],
["xpath=//input[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:20:j_idt1340:0:j_idt1342:0:inputText']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:20:editPrimitiveValueFragment']/div/div/div/div/input", "xpath:idRelative"],
["xpath=//div[21]/div/div/div/div/div/input", "xpath:position"]
],
"value": ""
}, {
"id": "fe7e0503-a5cd-4023-950e-e6e52e86b5ac",
"comment": "",
"command": "type",
"target": "id=datasetForm:tabView:j_idt1330:0:j_idt1333:20:j_idt1340:0:j_idt1342:0:inputText",
"targets": [
["id=datasetForm:tabView:j_idt1330:0:j_idt1333:20:j_idt1340:0:j_idt1342:0:inputText", "id"],
["name=datasetForm:tabView:j_idt1330:0:j_idt1333:20:j_idt1340:0:j_idt1342:0:inputText", "name"],
["css=#datasetForm\\3AtabView\\3Aj_idt1330\\3A 0\\3Aj_idt1333\\3A 20\\3Aj_idt1340\\3A 0\\3Aj_idt1342\\3A 0\\3AinputText", "css:finder"],
["xpath=//input[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:20:j_idt1340:0:j_idt1342:0:inputText']", "xpath:attributes"],
["xpath=//div[@id='datasetForm:tabView:j_idt1330:0:j_idt1333:20:editPrimitiveValueFragment']/div/div/div/div/input", "xpath:idRelative"],
["xpath=//div[21]/div/div/div/div/div/input", "xpath:position"]
],
"value": "2020-01-01"
}, {
"id": "9807fdc4-4da8-42cc-87af-59d41508a09f",
"comment": "",
"command": "click",
"target": "css=#datasetForm\\3Asave > .ui-button-text",
"targets": [
["css=#datasetForm\\3Asave > .ui-button-text", "css:finder"],
["xpath=//button[@id='datasetForm:save']/span", "xpath:idRelative"],
["xpath=//div[6]/button/span", "xpath:position"]
],
"value": ""
}]
}, {
"id": "cca84046-c83f-46a3-9aca-1b7c988f4234",
"name": "Using facets",
"commands": [{
"id": "bc2b8545-c3a2-498b-a1c3-4911807c7649",
"comment": "",
"command": "open",
"target": "/",
"targets": [],
"value": ""
}, {
"id": "a51db3d4-0a13-4164-b1f5-b828894cf653",
"comment": "",
"command": "setWindowSize",
"target": "1200x1065",
"targets": [],
"value": ""
}, {
"id": "02da15b6-882f-4d86-a101-7f7eedcfc8b7",
"comment": "",
"command": "click",
"target": "css=.ui-icon-blank",
"targets": [
["css=.ui-icon-blank", "css:finder"],
["xpath=//div[@id='facetType:j_idt482']/div[2]/span", "xpath:idRelative"],
["xpath=//div[3]/a/div/div[2]/span", "xpath:position"]
],
"value": ""
}, {
"id": "ff58e020-7471-4045-9211-e3ea116e2385",
"comment": "",
"command": "click",
"target": "css=.ui-state-hover > .ui-chkbox-icon",
"targets": [
["css=.ui-state-hover > .ui-chkbox-icon", "css:finder"],
["xpath=//div[@id='facetType:j_idt448']/div[2]/span", "xpath:idRelative"],
["xpath=//a/div/div[2]/span", "xpath:position"]
],
"value": ""
}, {
"id": "e27fcb3f-ce2d-43b9-a492-c18d0f08f5a5",
"comment": "",
"command": "click",
"target": "css=.ui-state-hover > .ui-chkbox-icon",
"targets": [
["css=.ui-state-hover > .ui-chkbox-icon", "css:finder"],
["xpath=//div[@id='facetType:j_idt465']/div[2]/span", "xpath:idRelative"],
["xpath=//div[2]/a/div/div[2]/span", "xpath:position"]
],
"value": ""
}, {
"id": "f033a2dc-7064-49ca-a3b0-809c548f92df",
"comment": "",
"command": "click",
"target": "linkText=Unpublished (12)",
"targets": [
["linkText=Unpublished (12)", "linkText"],
["css=#facetCategoryForm\\3A facetCategoryList\\3A 0\\3Aj_idt494_list > .ui-datalist-item:nth-child(2) > .facetLink", "css:finder"],
["xpath=//a[contains(text(),'Unpublished (12)')]", "xpath:link"],
["xpath=//ul[@id='facetCategoryForm:facetCategoryList:0:j_idt494_list']/li[2]/a", "xpath:idRelative"],
["xpath=//a[contains(@href, '/dataverse/root?q=&fq0=publicationStatus%3A%22Unpublished%22&types=files&sort=dateSort&order=')]", "xpath:href"],
["xpath=//li/div/div/ul/li[2]/a", "xpath:position"],
["xpath=//a[contains(.,'Unpublished (12)')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "c01bc4ae-1700-401b-b898-b3915bc79368",
"comment": "",
"command": "click",
"target": "linkText=FITS (8)",
"targets": [
["linkText=FITS (8)", "linkText"],
["css=#facetCategoryForm\\3A facetCategoryList\\3A 1\\3Aj_idt494_list > .ui-datalist-item:nth-child(1) > .facetLink", "css:finder"],
["xpath=//a[contains(text(),'FITS (8)')]", "xpath:link"],
["xpath=//ul[@id='facetCategoryForm:facetCategoryList:1:j_idt494_list']/li/a", "xpath:idRelative"],
["xpath=//a[contains(@href, '/dataverse/root?q=&fq1=fileTypeGroupFacet%3A%22FITS%22&fq0=publicationStatus%3A%22Unpublished%22&types=files&sort=dateSort&order=')]", "xpath:href"],
["xpath=//li[2]/div/div/ul/li/a", "xpath:position"],
["xpath=//a[contains(.,'FITS (8)')]", "xpath:innerText"]
],
"value": ""
}, {
"id": "af5707a1-af70-469f-9680-f88e2e7ca3e7",
"comment": "",
"command": "click",
"target": "css=.ui-state-hover > .ui-chkbox-icon",
"targets": [
["css=.ui-state-hover > .ui-chkbox-icon", "css:finder"],
["xpath=//div[@id='facetType:j_idt465']/div[2]/span", "xpath:idRelative"],
["xpath=//div[2]/a/div/div[2]/span", "xpath:position"]
],
"value": ""
}, {
"id": "ebc0668c-8728-428d-a3df-98f125db2070",
"comment": "",
"command": "click",
"target": "css=.ui-state-hover > .ui-chkbox-icon",
"targets": [
["css=.ui-state-hover > .ui-chkbox-icon", "css:finder"],
["xpath=//div[@id='facetType:j_idt482']/div[2]/span", "xpath:idRelative"],
["xpath=//div[3]/a/div/div[2]/span", "xpath:position"]
],
"value": ""
}, {
"id": "58bafe03-8cfe-408d-85ce-e473ae4d4097",
"comment": "",
"command": "click",
"target": "css=.facetLink:nth-child(2) > .glyphicon",
"targets": [
["css=.facetLink:nth-child(2) > .glyphicon", "css:finder"],
["xpath=//div[@id='resultsFacetsTopBlock']/a[2]/span", "xpath:idRelative"],
["xpath=//div[2]/a[2]/span", "xpath:position"]
],
"value": ""
}, {
"id": "3d433df0-594a-4385-8bfc-b64fa8b0486f",
"comment": "",
"command": "click",
"target": "css=#resultsFacetsTopBlock .glyphicon",
"targets": [
["css=#resultsFacetsTopBlock .glyphicon", "css:finder"],
["xpath=//div[@id='resultsFacetsTopBlock']/a/span", "xpath:idRelative"],
["xpath=//div[2]/div[2]/div/a/span", "xpath:position"]
],
"value": ""
}, {
"id": "f20f4b7e-58eb-4392-b970-e491c29a9dc0",
"comment": "",
"command": "click",
"target": "linkText=Supergiants (1)",
"targets": [
["linkText=Supergiants (1)", "linkText"],
["css=#facetCategoryForm\\3A facetCategoryList\\3A 3\\3Aj_idt494_list > .ui-datalist-item:nth-child(1) > .facetLink", "css:finder"],
["xpath=//a[contains(text(),'Supergiants (1)')]", "xpath:link"],
["xpath=//ul[@id='facetCategoryForm:facetCategoryList:3:j_idt494_list']/li/a", "xpath:idRelative"],
["xpath=//a[contains(@href, '/dataverse/root?q=&fq0=keywordValue_ss%3A%22Supergiants%22&types=datasets&sort=dateSort&order=')]", "xpath:href"],
["xpath=//li[4]/div/div/ul/li/a", "xpath:position"],
["xpath=//a[contains(.,'Supergiants (1)')]", "xpath:innerText"]
],
"value": ""