forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2457 lines (1966 loc) · 134 KB
/
ChangeLog
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
2021-08-22 Lauro Moura <[email protected]>
[WPE][WebDriver] Basic fullscreen support for the headless backend
https://bugs.webkit.org/show_bug.cgi?id=229380
Reviewed by Adrian Perez de Castro.
* TestExpectations.json: Skip some tests still failing, mainly due to multiple window support missing.
2021-05-23 Lauro Moura <[email protected]>
[WebDriver] Gardening local GTK and WPE failures
Unreviewed test gardening.
With these, no failures should happen running locally. Still a few
bits on the bots to check.
* TestExpectations.json:
2021-05-22 Lauro Moura <[email protected]>
[WebDriver] Gardening more failures
Unreviewed test gardening.
* TestExpectations.json:
2021-05-21 Lauro Moura <[email protected]>
[WebDriver] Gardening some GTK and WPE failures
Unreviewed test gardening.
* TestExpectations.json:
2021-04-22 Lauro Moura <[email protected]>
[GTK][WebDriver] Garden keypress failures
Unreviewed test gardening.
* TestExpectations.json:
2021-01-22 Lauro Moura <[email protected]>
[WebDriver] Add info about importing tests
https://bugs.webkit.org/show_bug.cgi?id=220786
Reviewed by Carlos Garcia Campos.
* README.md: Added.
2020-11-09 Lauro Moura <[email protected]>
[WebDriver] Gardening some WPE failures
Unreviewed test gardening.
* TestExpectations.json:
2020-11-05 Carlos Garcia Campos <[email protected]>
WebDriver: handle surrogate pairs in keyboard actions
https://bugs.webkit.org/show_bug.cgi?id=218279
Reviewed by Brian Burg.
Remove expectations for tests that are now passing.
* TestExpectations.json:
2020-11-03 Lauro Moura <[email protected]>
[WebDriver] Update config.json after tools update in r269235
https://bugs.webkit.org/show_bug.cgi?id=218512
Reviewed by Carlos Garcia Campos.
* imported/w3c/config.json: Add missing value to https list.
2020-10-27 Carlos Garcia Campos <[email protected]>
WebDriver: sequence of char key press is not supported
https://bugs.webkit.org/show_bug.cgi?id=217951
Reviewed by Brian Burg.
Remove expectations for test that is now passing.
* TestExpectations.json:
2020-10-22 Carlos Garcia Campos <[email protected]>
WebDriver: handle key events with non-ASCII unicode code point
https://bugs.webkit.org/show_bug.cgi?id=217950
Reviewed by Carlos Alberto Lopez Perez.
Remove expectations for tests that are now passing.
* TestExpectations.json:
2020-10-22 Carlos Garcia Campos <[email protected]>
Unreviewed. Update W3C WebDriver imported tests.
* TestExpectations.json:
* imported/w3c/importer.json:
* imported/w3c/tools/webdriver/webdriver/client.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/android_weblayer.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/chrome.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/chrome_android.py:
* imported/w3c/tools/wptrunner/wptrunner/environment.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/base.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executormarionette.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executorselenium.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executorservodriver.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executorwebdriver.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/protocol.py:
* imported/w3c/tools/wptrunner/wptrunner/testdriver-extra.js:
* imported/w3c/tools/wptrunner/wptrunner/testharnessreport.js:¡
* imported/w3c/tools/wptrunner/wptrunner/webdriver_server.py:
* imported/w3c/tools/wptrunner/wptrunner/wptcommandline.py:
* imported/w3c/tools/wptrunner/wptrunner/wptrunner.py:
* imported/w3c/webdriver/tests/element_click/shadow_dom.py: Added.
* imported/w3c/webdriver/tests/perform_actions/support/refine.py:
* imported/w3c/webdriver/tests/print/printcmd.py:
* imported/w3c/webdriver/tests/print/user_prompts.py:
2020-10-21 Lauro Moura <[email protected]>
webkitpy: Check for duplicated keys in json expectation files
https://bugs.webkit.org/show_bug.cgi?id=218032
Reviewed by Carlos Alberto Lopez Perez.
* TestExpectations.json: Fix duplicated test key.
2020-10-21 Carlos Garcia Campos <[email protected]>
WebDriver: add support for wheel actions
https://bugs.webkit.org/show_bug.cgi?id=217174
Reviewed by Brian Burg.
Remove expectations for wheel actions test.
* TestExpectations.json:
2020-10-20 Lauro Moura <[email protected]>
[WebDriver] Gardening WPE no browsing context failures
Unreviewed test gardening.
These failures are related to the lack of multi window support in
current WPE MiniBrowser code.
After this, a number of unexpected passes will appear due to
`test_no_browsing_context` failing in the teardown step and pytest
recording two runs (the actual test XPASSes but the teardown XFAILs).
* TestExpectations.json:
2020-10-20 Carlos Garcia Campos <[email protected]>
WebDriver: start a https server too for tests
https://bugs.webkit.org/show_bug.cgi?id=217223
<rdar://problem/70136595>
Reviewed by Adrian Perez de Castro.
* imported/w3c/config.json: Add HTTPs configuration.
2020-10-20 Carlos Garcia Campos <[email protected]>
WebDriver: add support for right variations of virtual keys
https://bugs.webkit.org/show_bug.cgi?id=217819
Reviewed by Brian Burg.
Remove expectations for tests that are now passing.
* TestExpectations.json:
2020-10-02 Carlos Garcia Campos <[email protected]>
Unreviewed Gardening. Remove expectations for tests fixed in r267872
* TestExpectations.json:
2020-10-01 Lauro Moura <[email protected]>
[WebDriver] Gardening no_browsing_context failures.
Unreviewed test gardening.
* TestExpectations.json:
2020-10-01 Carlos Garcia Campos <[email protected]>
Unreviewed. Update W3C WebDriver imported tests.
* TestExpectations.json:
* imported/w3c/importer.json:
* imported/w3c/tools/webdriver/:
* imported/w3c/tools/wptrunner/:
* imported/w3c/webdriver/:
2020-08-31 Lauro Moura <[email protected]>
[WPE][WebDriver] Gardening a few more failures
Unreviewed test gardening.
* TestExpectations.json:
2020-08-30 Lauro Moura <[email protected]>
[WPE] Gardening some webdriver failures
Unreviewed test gardening.
* TestExpectations.json:
2020-08-17 Lauro Moura <[email protected]>
[WPE][WebDriver] Gardening some failures
Unreviewed test gardening.
* TestExpectations.json:
2020-07-04 Lauro Moura <[email protected]>
[WebDriver][WPE][GTK] Garden post update failures
Unreviewed test gardening.
* TestExpectations.json:
2020-07-03 Lauro Moura <[email protected]>
[WebDriver][WPE] Update imported selenium to a version that enables WPE WebDriver tests
https://bugs.webkit.org/show_bug.cgi?id=213916
Reviewed by Carlos Garcia Campos.
Also updated the importer.json file with more paths to be skipped.
* imported/selenium/common/.classpath: Removed.
* imported/selenium/common/src/web/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-icons_222222_256x240.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-icons_228ef1_256x240.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-icons_ef8c08_256x240.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-icons_ffd27a_256x240.png:
* imported/selenium/common/src/web/css/ui-lightness/images/ui-icons_ffffff_256x240.png:
* imported/selenium/common/src/web/css/ui-lightness/jquery-ui-1.12.1.min.css: Added.
* imported/selenium/common/src/web/css/ui-lightness/jquery-ui-1.8.10.custom.css: Removed.
* imported/selenium/common/src/web/draggableLists.html:
* imported/selenium/common/src/web/droppableItems.html:
* imported/selenium/common/src/web/jquery-1.3.2.js: Removed.
* imported/selenium/common/src/web/js/jquery-1.4.4.min.js: Removed.
* imported/selenium/common/src/web/js/jquery-3.5.1.min.js: Added.
* imported/selenium/common/src/web/js/jquery-ui-1.12.1.min.js: Added.
* imported/selenium/common/src/web/js/jquery-ui-1.8.10.custom.min.js: Removed.
* imported/selenium/common/src/web/mousePositionTracker.html:
* imported/selenium/common/src/web/selectableItems.html:
* imported/selenium/importer.json:
* imported/selenium/py/conftest.py:
* imported/selenium/py/selenium/__init__.py:
* imported/selenium/py/selenium/webdriver/__init__.py:
* imported/selenium/py/selenium/webdriver/common/action_chains.py:
* imported/selenium/py/selenium/webdriver/common/actions/action_builder.py:
* imported/selenium/py/selenium/webdriver/common/actions/pointer_actions.py:
* imported/selenium/py/selenium/webdriver/common/actions/pointer_input.py:
* imported/selenium/py/selenium/webdriver/common/desired_capabilities.py:
* imported/selenium/py/selenium/webdriver/common/html5/application_cache.py:
* imported/selenium/py/selenium/webdriver/common/keys.py:
* imported/selenium/py/selenium/webdriver/common/options.py:
* imported/selenium/py/selenium/webdriver/common/service.py:
* imported/selenium/py/selenium/webdriver/common/timeouts.py:
* imported/selenium/py/selenium/webdriver/common/window.py:
* imported/selenium/py/selenium/webdriver/remote/file_detector.py:
* imported/selenium/py/selenium/webdriver/remote/remote_connection.py:
* imported/selenium/py/selenium/webdriver/remote/switch_to.py:
* imported/selenium/py/selenium/webdriver/remote/webdriver.py:
* imported/selenium/py/selenium/webdriver/remote/webelement.py:
* imported/selenium/py/selenium/webdriver/support/color.py:
* imported/selenium/py/selenium/webdriver/support/event_firing_webdriver.py:
* imported/selenium/py/selenium/webdriver/support/expected_conditions.py:
* imported/selenium/py/selenium/webdriver/support/relative_locator.py:
* imported/selenium/py/selenium/webdriver/support/select.py:
* imported/selenium/py/selenium/webdriver/support/wait.py:
* imported/selenium/py/selenium/webdriver/wpewebkit/options.py:
* imported/selenium/py/test/selenium/webdriver/common/alerts_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/api_example_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/appcache_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/children_finding_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/clear_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/click_scrolling_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/cookie_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/correct_event_firing_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/driver_element_finding_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/element_attribute_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/executing_async_javascript_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/executing_javascript_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/form_handling_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/frame_switching_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/google_one_box.py:
* imported/selenium/py/test/selenium/webdriver/common/implicit_waits_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/interactions_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/page_load_timeout_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/page_loading_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/position_and_size_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/repr_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/results_page.py:
* imported/selenium/py/test/selenium/webdriver/common/select_class_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/stale_reference_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/takes_screenshots_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/text_handling_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/timeout_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/typing_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/visibility_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/w3c_interaction_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/webdriverwait_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/window_switching_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/window_tests.py:
* imported/selenium/py/test/selenium/webdriver/remote/remote_hub_connection.py: Copied from WebDriverTests/imported/selenium/py/selenium/webdriver/common/window.py.
* imported/selenium/py/test/selenium/webdriver/safari/launcher_tests.py:
* imported/selenium/py/test/selenium/webdriver/support/event_firing_webdriver_tests.py:
* imported/selenium/py/test/selenium/webdriver/support/relative_by_tests.py:
2020-06-22 Lauro Moura <[email protected]>
[WebDriver][GTK] Mark two scrolling tests as fail
Unreviewed test gardening.
They are failing because element.location expects Get_Element_Rect to
return page coordinates instead of the browsing context coordinates.
There an open issue at https://github.com/w3c/webdriver/issues/1533
to clarify the correct behavior. Meanwhile, we should mark them as
failure.
The change that introduced this new behavior was r262997, and its bug
is used as the reference bug for these expectations.
* TestExpectations.json:
2020-06-21 Lauro Moura <[email protected]>
[WebDriver][GTK] Some executing_async_javascript_tests.py tests are failing with TimeoutExceptions
https://bugs.webkit.org/show_bug.cgi?id=211496
Unreviewed test gardening.
The two tests started passing with the updated selenium imported
tests from r263264;
* TestExpectations.json:
2020-06-21 Lauro Moura <[email protected]>
WebDriver: several tests in imported/selenium/py/test/selenium/webdriver/common/visibility_tests.py fail
https://bugs.webkit.org/show_bug.cgi?id=182334
Unreviewed test gardening.
The last two remaining tests from this bug started passing after the
imported selenium tests were updated in r263264.
* TestExpectations.json:
2020-06-21 Lauro Moura <[email protected]>
WebDriver: two selenium alert tests are failing
https://bugs.webkit.org/show_bug.cgi?id=181727
Unreviewed test gardening.
These tests also have been passing since r262861.
* TestExpectations.json:
2020-06-21 Lauro Moura <[email protected]>
[WebDriver][GTK] Gardening failures related to missing selenium files
Unreviewed test gardening.
The relative_by_tests require some JS fragments built by Bazel,
Selenium's build tool.
* TestExpectations.json:
2020-06-19 Lauro Moura <[email protected]>
[WebDriver][GTK] Some tests fails to click elements because element is outside visible rect
https://bugs.webkit.org/show_bug.cgi?id=211330
Unreviewed test gardening.
These tests have been passing since r262861 landed.
* TestExpectations.json:
2020-06-19 Lauro Moura <[email protected]>
[WebDriver][WPE] Update imported selenium to a version with the WPE WebDriver
https://bugs.webkit.org/show_bug.cgi?id=213263
Reviewed by Carlos Garcia Campos.
Updated Selenium tests to 0d7e57a7079c, which added the WPE WebDriver.
* imported/selenium/common/src/web/button.png: Added.
* imported/selenium/common/src/web/formPage.html:
* imported/selenium/common/src/web/inputs.html:
* imported/selenium/common/src/web/relative_locators.html: Added.
* imported/selenium/common/src/web/screen/screen.css:
* imported/selenium/common/src/web/selectableItems.html:
* imported/selenium/common/src/web/simpleTest.html:
* imported/selenium/common/src/web/upload.html:
* imported/selenium/common/src/web/upload_invisible.html:
* imported/selenium/common/src/web/xhtmlTest.html:
* imported/selenium/importer.json: Modified hash and skipped folders
* imported/selenium/py/conftest.py:
* imported/selenium/py/selenium/__init__.py:
* imported/selenium/py/selenium/common/exceptions.py:
* imported/selenium/py/selenium/webdriver/__init__.py:
* imported/selenium/py/selenium/webdriver/common/action_chains.py:
* imported/selenium/py/selenium/webdriver/common/actions/action_builder.py:
* imported/selenium/py/selenium/webdriver/common/actions/input_device.py:
* imported/selenium/py/selenium/webdriver/common/actions/interaction.py:
* imported/selenium/py/selenium/webdriver/common/actions/key_actions.py:
* imported/selenium/py/selenium/webdriver/common/actions/mouse_button.py:
* imported/selenium/py/selenium/webdriver/common/actions/pointer_actions.py:
* imported/selenium/py/selenium/webdriver/common/actions/pointer_input.py:
* imported/selenium/py/selenium/webdriver/common/alert.py:
* imported/selenium/py/selenium/webdriver/common/desired_capabilities.py:
* imported/selenium/py/selenium/webdriver/common/html5/application_cache.py:
* imported/selenium/py/selenium/webdriver/common/options.py: Added.
* imported/selenium/py/selenium/webdriver/common/proxy.py:
* imported/selenium/py/selenium/webdriver/common/timeouts.py: Added.
* imported/selenium/py/selenium/webdriver/common/utils.py:
* imported/selenium/py/selenium/webdriver/common/window.py: Copied from WebDriverTests/imported/selenium/py/selenium/__init__.py.
* imported/selenium/py/selenium/webdriver/remote/command.py:
* imported/selenium/py/selenium/webdriver/remote/errorhandler.py:
* imported/selenium/py/selenium/webdriver/remote/remote_connection.py:
* imported/selenium/py/selenium/webdriver/remote/switch_to.py:
* imported/selenium/py/selenium/webdriver/remote/utils.py:
* imported/selenium/py/selenium/webdriver/remote/webdriver.py:
* imported/selenium/py/selenium/webdriver/remote/webelement.py:
* imported/selenium/py/selenium/webdriver/safari/permissions.py: Copied from WebDriverTests/imported/selenium/py/selenium/__init__.py.
* imported/selenium/py/selenium/webdriver/safari/remote_connection.py: Copied from WebDriverTests/imported/selenium/py/test/selenium/webdriver/remote/remote_firefox_profile_tests.py.
* imported/selenium/py/selenium/webdriver/safari/service.py:
* imported/selenium/py/selenium/webdriver/safari/webdriver.py:
* imported/selenium/py/selenium/webdriver/support/color.py:
* imported/selenium/py/selenium/webdriver/support/event_firing_webdriver.py:
* imported/selenium/py/selenium/webdriver/support/expected_conditions.py:
* imported/selenium/py/selenium/webdriver/support/relative_locator.py: Added.
* imported/selenium/py/selenium/webdriver/support/select.py:
* imported/selenium/py/selenium/webdriver/support/wait.py:
* imported/selenium/py/selenium/webdriver/webkitgtk/options.py:
* imported/selenium/py/selenium/webdriver/webkitgtk/webdriver.py:
* imported/selenium/py/selenium/webdriver/wpewebkit/__init__.py: Copied from WebDriverTests/imported/selenium/py/selenium/__init__.py.
* imported/selenium/py/selenium/webdriver/wpewebkit/options.py: Copied from WebDriverTests/imported/selenium/py/selenium/webdriver/webkitgtk/options.py.
* imported/selenium/py/selenium/webdriver/wpewebkit/service.py: Copied from WebDriverTests/imported/selenium/py/selenium/webdriver/safari/service.py.
* imported/selenium/py/selenium/webdriver/wpewebkit/webdriver.py: Copied from WebDriverTests/imported/selenium/py/selenium/webdriver/webkitgtk/webdriver.py.
* imported/selenium/py/test/selenium/webdriver/common/alerts_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/api_example_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/appcache_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/click_scrolling_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/cookie_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/correct_event_firing_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/driver_element_finding_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/element_attribute_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/executing_async_javascript_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/form_handling_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/frame_switching_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/interactions_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/page_load_timeout_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/page_loading_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/position_and_size_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/proxy_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/rendered_webelement_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/select_class_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/select_element_handling_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/takes_screenshots_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/timeout_tests.py: Added.
* imported/selenium/py/test/selenium/webdriver/common/typing_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/w3c_interaction_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/webdriverwait_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/window_switching_tests.py:
* imported/selenium/py/test/selenium/webdriver/common/window_tests.py:
* imported/selenium/py/test/selenium/webdriver/remote/remote_firefox_profile_tests.py:
* imported/selenium/py/test/selenium/webdriver/safari/launcher_tests.py:
* imported/selenium/py/test/selenium/webdriver/support/event_firing_webdriver_tests.py:
* imported/selenium/py/test/selenium/webdriver/support/expected_conditions_tests.py: Added.
* imported/selenium/py/test/selenium/webdriver/support/relative_by_tests.py: Added.
2020-06-12 Lauro Moura <[email protected]>
[WebDriver][WPE] Add remaining WPE failures to expectations.
Unreviewed test gardening.
* TestExpectations.json:
2020-06-08 Lauro Moura <[email protected]>
[WebDriver][WPE] Gardening most of the remaining WPE failures.
Unreviewed test gardening.
* TestExpectations.json:
2020-06-08 Lauro Moura <[email protected]>
[WebDriver][GTK][WPE] Fix overwritten expectations.
WPE's set_window_rect/set.py expectations were in a block after the
existing ones from other ports, overwriting them. This commit now
merges them to be in a single block.
Unreviewed test gardening.
* TestExpectations.json:
2020-06-08 Lauro Moura <[email protected]>
[WebDriver][GTK] Update test expectations after modifier fix
Unreviewed test gardening.
* TestExpectations.json:
2020-05-30 Carlos Garcia Campos <[email protected]>
[GTK] WebDriver: stop using GdkEvent API in preparation for GTK4
https://bugs.webkit.org/show_bug.cgi?id=212465
Reviewed by Adrian Perez de Castro.
Remove expectations for tests that are passing now.
* TestExpectations.json:
2020-05-19 Lauro Moura <[email protected]>
[WebDriver][WPE] Skip windowing tests.
These tests are related to window operations not directly supported by
WPE.
Unreviewed test gardening.
* TestExpectations.json:
2020-05-06 Lauro Moura <[email protected]>
[WebDriver] gardening flaky test.
Unreviewed test gardening.
* TestExpectations.json:
2020-05-05 Lauro Moura <[email protected]>
[WebDriver] Gardening more GTK failures.
Unreviewed test gardening.
* TestExpectations.json:
2020-05-01 Lauro Moura <[email protected]>
[WebDriver] Gardening some failures.
Unreviewed test gardening.
* TestExpectations.json:
2020-04-10 Diego Pino Garcia <[email protected]>
[WebDriver] Gardening, remove spurious entry
https://bugs.webkit.org/show_bug.cgi?id=210333
Unreviewed gardening.
All subtests in the test were passing, so the entry can be deleted.
* TestExpectations.json:
2020-04-09 Diego Pino Garcia <[email protected]>
[WebDriver] Gardening, update expectations of several WebDriver tests.
https://bugs.webkit.org/show_bug.cgi?id=210229
Reviewed by Carlos Garcia Campos.
Clean up tests expected to fail but passed.
* TestExpectations.json:
2020-03-04 Lauro Moura <[email protected]>
[WebDriver] Update screenshot/user_prompt expectations.
They were marked as FAIL in r239824 due to upstream w3c tests not handling
dialogs correctly and this handling not being in the spec.
The correct handling was added to wpt in
https://github.com/web-platform-tests/wpt/pull/17563, imported to webkit
in r252358, and have been passing since in the GTK test bot.
Also were added to the spec in https://github.com/w3c/webdriver/commit/32165846
Unreviewed test gardening.
* TestExpectations.json:
2020-01-10 Carlos Garcia Campos <[email protected]>
Automation: evaluateJavaScriptFunction should use Promises
https://bugs.webkit.org/show_bug.cgi?id=204151
Reviewed by Brian Burg.
Remove expectations for tests that are now passing.
* TestExpectations.json:
2020-01-09 Carlos Garcia Campos <[email protected]>
Unreviewed gardening. Mark imported/w3c/webdriver/tests/switch_to_frame/cross_origin.py::test_nested_cross_origin_iframe as failure
* TestExpectations.json:
2020-01-08 Carlos Garcia Campos <[email protected]>
Unreviewed gardening. Add expectations for several tests failing
* TestExpectations.json:
2020-01-08 Carlos Garcia Campos <[email protected]>
Unreviewed. Update W3C WebDriver imported tests.
* TestExpectations.json:
* imported/w3c/importer.json:
* imported/w3c/tools/webdriver/webdriver/__init__.py:
* imported/w3c/tools/webdriver/webdriver/client.py:
* imported/w3c/tools/webdriver/webdriver/error.py:
* imported/w3c/tools/webdriver/webdriver/transport.py:
* imported/w3c/tools/wptrunner/docs/expectation.rst:
* imported/w3c/tools/wptrunner/requirements.txt:
* imported/w3c/tools/wptrunner/requirements_firefox.txt:
* imported/w3c/tools/wptrunner/tox.ini:
* imported/w3c/tools/wptrunner/wptrunner/browsers/__init__.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/android_weblayer.py: Added.
* imported/w3c/tools/wptrunner/wptrunner/browsers/base.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/servo.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/servodriver.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/webkit.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/base.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executormarionette.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executorselenium.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executorservo.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executorservodriver.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executorwebdriver.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/protocol.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/reftest-wait_marionette.js: Removed.
* imported/w3c/tools/wptrunner/wptrunner/executors/reftest-wait_webdriver.js:
* imported/w3c/tools/wptrunner/wptrunner/testdriver-extra.js:
* imported/w3c/tools/wptrunner/wptrunner/testrunner.py:
* imported/w3c/tools/wptrunner/wptrunner/tests/__init__.py:
* imported/w3c/tools/wptrunner/wptrunner/tests/browsers/test_webkitgtk.py: Added.
* imported/w3c/tools/wptrunner/wptrunner/tests/test_wpttest.py:
* imported/w3c/tools/wptrunner/wptrunner/wptrunner.py:
* imported/w3c/tools/wptrunner/wptrunner/wpttest.py:
* imported/w3c/webdriver/tests/find_element_from_element/find.py:
* imported/w3c/webdriver/tests/new_session/default_values.py:
* imported/w3c/webdriver/tests/perform_actions/support/keys.py:
* imported/w3c/webdriver/tests/perform_actions/validity.py:
* imported/w3c/webdriver/tests/send_alert_text/send.py:
* imported/w3c/webdriver/tests/set_window_rect/set.py:
2020-01-07 Carlos Garcia Campos <[email protected]>
WebDriver: several w3c collections tests added in r230953 are failing
https://bugs.webkit.org/show_bug.cgi?id=184966
Reviewed by Brian Burg.
Remove expectations for tests that are now passing.
* TestExpectations.json:
2020-01-07 Carlos Garcia Campos <[email protected]>
WebDriver: several tests in imported/w3c/webdriver/tests/state/get_element_attribute.py are failing
https://bugs.webkit.org/show_bug.cgi?id=180415
Reviewed by Brian Burg.
Remove expectations for tests that are now passing.
* TestExpectations.json:
2019-12-03 Carlos Garcia Campos <[email protected]>
WebDriver: handle elements of type file in send keys command
https://bugs.webkit.org/show_bug.cgi?id=188514
Reviewed by Brian Burg.
Remove expectations for tests that are now passing.
* TestExpectations.json:
2019-12-03 Carlos Garcia Campos <[email protected]>
WebDriver: most of the clear tests are failing
https://bugs.webkit.org/show_bug.cgi?id=180404
Reviewed by Brian Burg.
Remove expectations for tests that are now passing.
* TestExpectations.json:
2019-11-13 Carlos Garcia Campos <[email protected]>
Unreviewed gardening. Skip imported/w3c/webdriver/tests/send_alert_text/send.py::test_alert_unsupported_operation.
The test looks specific to firefox.
* TestExpectations.json:
2019-11-13 Carlos Garcia Campos <[email protected]>
Unreviewed gardening. Add expectations for execute script tests.
The ones checking the use of promises are failing.
* TestExpectations.json:
2019-11-13 Carlos Garcia Campos <[email protected]>
Unreviewed gardening. Add expectations for tests using strictFileInteractability
File upload is not yet supported.
* TestExpectations.json:
2019-11-13 Carlos Garcia Campos <[email protected]>
Unreviewed gardening. Update expectations of fullscreen tests.
They are failing in the bots, but passing locally and with wpt.
* TestExpectations.json:
2019-11-12 Carlos Garcia Campos <[email protected]>
Unreviewed. Update W3C WebDriver imported tests.
* imported/w3c/importer.json:
* imported/w3c/tools/webdriver/README.md:
* imported/w3c/tools/webdriver/webdriver/client.py:
* imported/w3c/tools/webdriver/webdriver/transport.py:
* imported/w3c/tools/wptrunner:
* imported/w3c/webdriver/tests/accept_alert/accept.py:
* imported/w3c/webdriver/tests/add_cookie/add.py:
* imported/w3c/webdriver/tests/dismiss_alert/dismiss.py:
* imported/w3c/webdriver/tests/element_clear/clear.py:
* imported/w3c/webdriver/tests/element_click/bubbling.py:
* imported/w3c/webdriver/tests/execute_async_script/collections.py:
* imported/w3c/webdriver/tests/execute_async_script/promise.py: Added.
* imported/w3c/webdriver/tests/execute_async_script/properties.py: Added.
* imported/w3c/webdriver/tests/execute_script/collections.py:
* imported/w3c/webdriver/tests/execute_script/execute.py:
* imported/w3c/webdriver/tests/execute_script/promise.py:
* imported/w3c/webdriver/tests/execute_script/properties.py: Added.
* imported/w3c/webdriver/tests/find_element_from_element/find.py:
* imported/w3c/webdriver/tests/get_alert_text/get.py:
* imported/w3c/webdriver/tests/get_current_url/get.py:
* imported/w3c/webdriver/tests/get_element_attribute/get.py:
* imported/w3c/webdriver/tests/get_element_property/get.py:
* imported/w3c/webdriver/tests/get_named_cookie/get.py:
* imported/w3c/webdriver/tests/get_window_rect/get.py:
* imported/w3c/webdriver/tests/maximize_window/maximize.py:
* imported/w3c/webdriver/tests/navigate_to/navigate.py:
* imported/w3c/webdriver/tests/new_session/conftest.py:
* imported/w3c/webdriver/tests/new_session/timeouts.py:
* imported/w3c/webdriver/tests/new_window/__init__.py: Added.
* imported/w3c/webdriver/tests/new_window/new.py: Added.
* imported/w3c/webdriver/tests/new_window/new_tab.py: Added.
* imported/w3c/webdriver/tests/new_window/new_window.py: Added.
* imported/w3c/webdriver/tests/new_window/user_prompts.py: Added.
* imported/w3c/webdriver/tests/perform_actions/key_events.py:
* imported/w3c/webdriver/tests/perform_actions/pointer.py:
* imported/w3c/webdriver/tests/perform_actions/pointer_contextmenu.py:
* imported/w3c/webdriver/tests/perform_actions/pointer_origin.py:
* imported/w3c/webdriver/tests/perform_actions/support/keys.py:
* imported/w3c/webdriver/tests/perform_actions/validity.py:
* imported/w3c/webdriver/tests/permissions/set.py:
* imported/w3c/webdriver/tests/send_alert_text/conftest.py: Added.
* imported/w3c/webdriver/tests/send_alert_text/send.py:
* imported/w3c/webdriver/tests/set_timeouts/set.py:
* imported/w3c/webdriver/tests/set_window_rect/set.py:
* imported/w3c/webdriver/tests/support/asserts.py:
* imported/w3c/webdriver/tests/support/authentication.py: Added.
* imported/w3c/webdriver/tests/support/defaults.py:
* imported/w3c/webdriver/tests/support/fixtures.py:
* imported/w3c/webdriver/tests/support/helpers.py:
* imported/w3c/webdriver/tests/support/inline.py:
* imported/w3c/webdriver/tests/switch_to_frame/cross_origin.py: Added.
* imported/w3c/webdriver/tests/switch_to_frame/switch.py:
* imported/w3c/webdriver/tests/switch_to_window/alerts.py: Added.
* imported/w3c/webdriver/tests/take_element_screenshot/__init__.py:
* imported/w3c/webdriver/tests/take_element_screenshot/iframe.py: Added.
* imported/w3c/webdriver/tests/take_element_screenshot/screenshot.py:
* imported/w3c/webdriver/tests/take_element_screenshot/user_prompts.py:
* imported/w3c/webdriver/tests/take_screenshot/__init__.py:
* imported/w3c/webdriver/tests/take_screenshot/iframe.py: Added.
* imported/w3c/webdriver/tests/take_screenshot/screenshot.py:
* imported/w3c/webdriver/tests/take_screenshot/user_prompts.py:
2019-11-11 Carlos Garcia Campos <[email protected]>
WebDriver: implement proxy support
https://bugs.webkit.org/show_bug.cgi?id=180408
Reviewed by Carlos Alberto Lopez Perez.
Unskip the tests that are now passing.
* TestExpectations.json:
2019-11-08 Carlos Garcia Campos <[email protected]>
WebDriver: implement get page source command
https://bugs.webkit.org/show_bug.cgi?id=180399
Reviewed by Carlos Alberto Lopez Perez.
Unskip tests that are now passing.
* TestExpectations.json:
2019-11-07 Carlos Garcia Campos <[email protected]>
WebDriver: correctly handle errors when focusing element before sending key events
https://bugs.webkit.org/show_bug.cgi?id=203945
Reviewed by Carlos Alberto Lopez Perez.
Remove expectations for tests that are now passing.
* TestExpectations.json:
2019-01-10 Carlos Garcia Campos <[email protected]>
Unreviewed gardening. Mark user prompts tests in take screenshot commands as failure
Tests don't expect user prompts to be handled in take screenshot commands, but that's going to change in the
spec soon, see https://github.com/w3c/webdriver/issues/1359.
* TestExpectations.json:
2018-12-21 Carlos Garcia Campos <[email protected]>
Unreviewed gardening. Skip imported/w3c/webdriver/tests/permissions/set.py.
Permissions command is not implemented yet.
* TestExpectations.json:
2018-12-21 Carlos Garcia Campos <[email protected]>
Unreviewed. WebDriver: remove deleted tests after r238881.
Deleted files were not removed from the repository in r238881. Also update the test names in the test
expectations file.
* TestExpectations.json:
* imported/w3c/webdriver/tests/actions/__init__.py: Removed.
* imported/w3c/webdriver/tests/actions/conftest.py: Removed.
* imported/w3c/webdriver/tests/actions/control_click.py: Removed.
* imported/w3c/webdriver/tests/actions/key.py: Removed.
* imported/w3c/webdriver/tests/actions/key_shortcuts.py: Removed.
* imported/w3c/webdriver/tests/actions/modifier_click.py: Removed.
* imported/w3c/webdriver/tests/actions/mouse.py: Removed.
* imported/w3c/webdriver/tests/actions/mouse_dblclick.py: Removed.
* imported/w3c/webdriver/tests/actions/mouse_pause_dblclick.py: Removed.
* imported/w3c/webdriver/tests/actions/pointer_origin.py: Removed.
* imported/w3c/webdriver/tests/actions/sequence.py: Removed.
* imported/w3c/webdriver/tests/actions/special_keys.py: Removed.
* imported/w3c/webdriver/tests/actions/support/__init__.py: Removed.
* imported/w3c/webdriver/tests/actions/support/keys.py: Removed.
* imported/w3c/webdriver/tests/actions/support/mouse.py: Removed.
* imported/w3c/webdriver/tests/actions/support/refine.py: Removed.
* imported/w3c/webdriver/tests/actions/support/test_actions_wdspec.html: Removed.
* imported/w3c/webdriver/tests/page_source/__init__.py: Removed.
* imported/w3c/webdriver/tests/page_source/source.py: Removed.
* imported/w3c/webdriver/tests/support/wait.py: Removed.
2018-12-04 Brian Burg <[email protected]>
Unreviewed. Update W3C WebDriver imported tests.
<rdar://problem/46470254>
* imported/w3c/importer.json:
* imported/w3c/tools/webdriver/webdriver/client.py:
* imported/w3c/tools/webdriver/webdriver/error.py:
* imported/w3c/tools/wptrunner/docs/design.rst:
* imported/w3c/tools/wptrunner/requirements.txt:
* imported/w3c/tools/wptrunner/requirements_chrome.txt:
* imported/w3c/tools/wptrunner/requirements_chrome_android.txt:
* imported/w3c/tools/wptrunner/requirements_edge.txt:
* imported/w3c/tools/wptrunner/requirements_firefox.txt:
* imported/w3c/tools/wptrunner/requirements_ie.txt:
* imported/w3c/tools/wptrunner/requirements_opera.txt:
* imported/w3c/tools/wptrunner/requirements_safari.txt:
* imported/w3c/tools/wptrunner/requirements_sauce.txt:
* imported/w3c/tools/wptrunner/tox.ini:
* imported/w3c/tools/wptrunner/wptrunner/browsers/__init__.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/base.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/chrome.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/edge_webdriver.py: Added.
* imported/w3c/tools/wptrunner/wptrunner/browsers/fennec.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/firefox.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/safari.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/sauce.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/servodriver.py:
* imported/w3c/tools/wptrunner/wptrunner/browsers/webkit.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/base.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executormarionette.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executorselenium.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executorservo.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/executorwebdriver.py: Copied from WebDriverTests/imported/w3c/tools/wptrunner/wptrunner/executors/executorselenium.py.
* imported/w3c/tools/wptrunner/wptrunner/executors/protocol.py:
* imported/w3c/tools/wptrunner/wptrunner/executors/runner.js: Added.
* imported/w3c/tools/wptrunner/wptrunner/executors/testharness_webdriver.js:
* imported/w3c/tools/wptrunner/wptrunner/executors/testharness_webdriver_resume.js:
* imported/w3c/tools/wptrunner/wptrunner/formatters.py:
* imported/w3c/tools/wptrunner/wptrunner/manifestexpected.py:
* imported/w3c/tools/wptrunner/wptrunner/stability.py:
* imported/w3c/tools/wptrunner/wptrunner/testdriver-extra.js:
* imported/w3c/tools/wptrunner/wptrunner/testloader.py:
* imported/w3c/tools/wptrunner/wptrunner/testrunner.py:
* imported/w3c/tools/wptrunner/wptrunner/tests/base.py:
* imported/w3c/tools/wptrunner/wptrunner/tests/test_formatters.py:
* imported/w3c/tools/wptrunner/wptrunner/tests/test_stability.py:
* imported/w3c/tools/wptrunner/wptrunner/tests/test_testloader.py:
* imported/w3c/tools/wptrunner/wptrunner/tests/test_update.py:
* imported/w3c/tools/wptrunner/wptrunner/tests/test_wpttest.py:
* imported/w3c/tools/wptrunner/wptrunner/update/tree.py:
* imported/w3c/tools/wptrunner/wptrunner/update/update.py:
* imported/w3c/tools/wptrunner/wptrunner/webdriver_server.py:
* imported/w3c/tools/wptrunner/wptrunner/wptcommandline.py:
* imported/w3c/tools/wptrunner/wptrunner/wptmanifest/parser.py:
* imported/w3c/tools/wptrunner/wptrunner/wptmanifest/tests/test_parser.py:
* imported/w3c/tools/wptrunner/wptrunner/wptmanifest/tests/test_serializer.py:
* imported/w3c/tools/wptrunner/wptrunner/wptrunner.py:
* imported/w3c/tools/wptrunner/wptrunner/wpttest.py:
* imported/w3c/webdriver/tests/add_cookie/add.py:
* imported/w3c/webdriver/tests/add_cookie/user_prompts.py: Copied from WebDriverTests/imported/w3c/webdriver/tests/minimize_window/user_prompts.py.
* imported/w3c/webdriver/tests/back/user_prompts.py: Copied from WebDriverTests/imported/w3c/webdriver/tests/minimize_window/user_prompts.py.
* imported/w3c/webdriver/tests/conftest.py:
* imported/w3c/webdriver/tests/delete_all_cookies/user_prompts.py: Copied from WebDriverTests/imported/w3c/webdriver/tests/minimize_window/user_prompts.py.
* imported/w3c/webdriver/tests/delete_session/delete.py:
* imported/w3c/webdriver/tests/element_clear/clear.py:
* imported/w3c/webdriver/tests/element_clear/user_prompts.py: Copied from WebDriverTests/imported/w3c/webdriver/tests/minimize_window/user_prompts.py.
* imported/w3c/webdriver/tests/element_click/center_point.py: Added.
* imported/w3c/webdriver/tests/element_click/interactability.py:
* imported/w3c/webdriver/tests/element_click/scroll_into_view.py:
* imported/w3c/webdriver/tests/element_click/user_prompts.py: Copied from WebDriverTests/imported/w3c/webdriver/tests/minimize_window/user_prompts.py.
* imported/w3c/webdriver/tests/element_send_keys/file_upload.py:
* imported/w3c/webdriver/tests/element_send_keys/interactability.py:
* imported/w3c/webdriver/tests/element_send_keys/scroll_into_view.py:
* imported/w3c/webdriver/tests/element_send_keys/send_keys.py:
* imported/w3c/webdriver/tests/execute_async_script/execute_async.py:
* imported/w3c/webdriver/tests/execute_script/execute.py:
* imported/w3c/webdriver/tests/execute_script/promise.py: Added.
* imported/w3c/webdriver/tests/find_element/find.py:
* imported/w3c/webdriver/tests/find_element/user_prompts.py: Copied from WebDriverTests/imported/w3c/webdriver/tests/minimize_window/user_prompts.py.
* imported/w3c/webdriver/tests/find_element_from_element/find.py:
* imported/w3c/webdriver/tests/find_element_from_element/user_prompts.py: Copied from WebDriverTests/imported/w3c/webdriver/tests/fullscreen_window/user_prompts.py.