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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
|
{
"Accessibility should work (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility should report uninteresting nodes (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility roledescription (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility orientation (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility autocomplete (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility multiselectable (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility keyshortcuts (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes should not report text nodes inside controls (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes rich text editable fields should have children (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes rich text editable fields with role should have children (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes non editable textbox with role and tabIndex and label should not have children (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes checkbox with and tabIndex and label should not have children (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes checkbox without label should not have children (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes plaintext contenteditable plain text field with role should not have children (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes plaintext contenteditable plain text field without role should not have content (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes plaintext contenteditable plain text field with tabindex and without role should not have content (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes root option should work a button (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes root option should work an input (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes root option should work a menu (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes root option should return null when the element is no longer in DOM (accessibility.spec.ts)": [
"SKIP"
],
"Accessibility filtering children of leaf nodes root option should support the interestingOnly option (accessibility.spec.ts)": [
"SKIP"
],
"Browser specs Browser.version should return whether we are in headless (browser.spec.ts)": [
"PASS"
],
"Browser specs Browser.userAgent should include WebKit (browser.spec.ts)": [
"PASS"
],
"Browser specs Browser.target should return browser target (browser.spec.ts)": [
"PASS"
],
"Browser specs Browser.process should return child_process instance (browser.spec.ts)": [
"PASS"
],
"Browser specs Browser.process should not return child_process for remote browser (browser.spec.ts)": [
"PASS"
],
"Browser specs Browser.isConnected should set the browser connected state (browser.spec.ts)": [
"PASS"
],
"BrowserContext should have default context (browsercontext.spec.ts)": [
"PASS"
],
"BrowserContext should create new incognito context (browsercontext.spec.ts)": [
"PASS"
],
"BrowserContext should close all belonging targets once closing context (browsercontext.spec.ts)": [
"PASS"
],
"BrowserContext window.open should use parent tab context (browsercontext.spec.ts)": [
"FAIL"
],
"BrowserContext should fire target events (browsercontext.spec.ts)": [
"FAIL"
],
"BrowserContext should wait for a target (browsercontext.spec.ts)": [
"TIMEOUT"
],
"BrowserContext should timeout waiting for a non-existent target (browsercontext.spec.ts)": [
"PASS"
],
"BrowserContext should isolate localStorage and cookies (browsercontext.spec.ts)": [
"FAIL"
],
"BrowserContext should work across sessions (browsercontext.spec.ts)": [
"FAIL"
],
"Page.click should click the button (click.spec.ts)": [
"PASS", "FAIL"
],
"Page.click should click svg (click.spec.ts)": [
"PASS"
],
"Page.click should click the button if window.Node is removed (click.spec.ts)": [
"FAIL"
],
"Page.click should click on a span with an inline element inside (click.spec.ts)": [
"PASS"
],
"Page.click should not throw UnhandledPromiseRejection when page closes (click.spec.ts)": [
"PASS"
],
"Page.click should click the button after navigation (click.spec.ts)": [
"PASS"
],
"Page.click should click with disabled javascript (click.spec.ts)": [
"FAIL"
],
"Page.click should click when one of inline box children is outside of viewport (click.spec.ts)": [
"PASS"
],
"Page.click should select the text by triple clicking (click.spec.ts)": [
"PASS"
],
"Page.click should click offscreen buttons (click.spec.ts)": [
"PASS"
],
"Page.click should click wrapped links (click.spec.ts)": [
"PASS"
],
"Page.click should click on checkbox input and toggle (click.spec.ts)": [
"PASS"
],
"Page.click should click on checkbox label and toggle (click.spec.ts)": [
"FAIL", "PASS"
],
"Page.click should fail to click a missing button (click.spec.ts)": [
"PASS"
],
"Page.click should not hang with touch-enabled viewports (click.spec.ts)": [
"PASS"
],
"Page.click should scroll and click the button (click.spec.ts)": [
"PASS"
],
"Page.click should double click the button (click.spec.ts)": [
"PASS"
],
"Page.click should click a partially obscured button (click.spec.ts)": [
"PASS"
],
"Page.click should click a rotated button (click.spec.ts)": [
"PASS"
],
"Page.click should fire contextmenu event on right click (click.spec.ts)": [
"PASS"
],
"Page.click should click links which cause navigation (click.spec.ts)": [
"PASS"
],
"Page.click should click the button inside an iframe (click.spec.ts)": [
"PASS"
],
"Page.click should click the button with fixed position inside an iframe (click.spec.ts)": [
"SKIP"
],
"Page.click should click the button with deviceScaleFactor set (click.spec.ts)": [
"PASS"
],
"Cookie specs Page.cookies should return no cookies in pristine browser context (cookies.spec.ts)": [
"PASS"
],
"Cookie specs Page.cookies should get a cookie (cookies.spec.ts)": [
"PASS"
],
"Cookie specs Page.cookies should properly report httpOnly cookie (cookies.spec.ts)": [
"PASS"
],
"Cookie specs Page.cookies should properly report \"Strict\" sameSite cookie (cookies.spec.ts)": [
"PASS"
],
"Cookie specs Page.cookies should properly report \"Lax\" sameSite cookie (cookies.spec.ts)": [
"PASS"
],
"Cookie specs Page.cookies should get multiple cookies (cookies.spec.ts)": [
"PASS"
],
"Cookie specs Page.cookies should get cookies from multiple urls (cookies.spec.ts)": [
"FAIL"
],
"Cookie specs Page.setCookie should work (cookies.spec.ts)": [
"FAIL"
],
"Cookie specs Page.setCookie should isolate cookies in browser contexts (cookies.spec.ts)": [
"FAIL"
],
"Cookie specs Page.setCookie should set multiple cookies (cookies.spec.ts)": [
"FAIL"
],
"Cookie specs Page.setCookie should have |expires| set to |-1| for session cookies (cookies.spec.ts)": [
"PASS"
],
"Cookie specs Page.setCookie should set cookie with reasonable defaults (cookies.spec.ts)": [
"FAIL"
],
"Cookie specs Page.setCookie should set a cookie with a path (cookies.spec.ts)": [
"FAIL"
],
"Cookie specs Page.setCookie should not set a cookie on a blank page (cookies.spec.ts)": [
"PASS"
],
"Cookie specs Page.setCookie should not set a cookie with blank page URL (cookies.spec.ts)": [
"PASS"
],
"Cookie specs Page.setCookie should not set a cookie on a data URL page (cookies.spec.ts)": [
"PASS"
],
"Cookie specs Page.setCookie should default to setting secure cookie for HTTPS websites (cookies.spec.ts)": [
"FAIL"
],
"Cookie specs Page.setCookie should be able to set unsecure cookie for HTTP website (cookies.spec.ts)": [
"PASS"
],
"Cookie specs Page.setCookie should set a cookie on a different domain (cookies.spec.ts)": [
"FAIL"
],
"Cookie specs Page.setCookie should set cookies from a frame (cookies.spec.ts)": [
"FAIL"
],
"Cookie specs Page.setCookie should set secure same-site cookies from a frame (cookies.spec.ts)": [
"FAIL"
],
"Cookie specs Page.deleteCookie should work (cookies.spec.ts)": [
"FAIL"
],
"DefaultBrowserContext page.cookies() should work (defaultbrowsercontext.spec.ts)": [
"PASS"
],
"DefaultBrowserContext page.setCookie() should work (defaultbrowsercontext.spec.ts)": [
"FAIL"
],
"DefaultBrowserContext page.deleteCookie() should work (defaultbrowsercontext.spec.ts)": [
"FAIL"
],
"Page.Events.Dialog should fire (dialog.spec.ts)": [
"PASS"
],
"Page.Events.Dialog should allow accepting prompts (dialog.spec.ts)": [
"FAIL"
],
"Page.Events.Dialog should dismiss the prompt (dialog.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.boundingBox should work (elementhandle.spec.ts)": [
"FAIL"
],
"ElementHandle specs ElementHandle.boundingBox should handle nested frames (elementhandle.spec.ts)": [
"PASS", "FAIL"
],
"ElementHandle specs ElementHandle.boundingBox should return null for invisible elements (elementhandle.spec.ts)": [
"FAIL"
],
"ElementHandle specs ElementHandle.boundingBox should force a layout (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.boundingBox should work with SVG nodes (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.boxModel should work (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.boxModel should return null for invisible elements (elementhandle.spec.ts)": [
"FAIL"
],
"ElementHandle specs ElementHandle.contentFrame should work (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.click should work (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.click should work for Shadow DOM v1 (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.click should work for TextNodes (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.click should throw for detached nodes (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.click should throw for hidden nodes (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.click should throw for recursively hidden nodes (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.click should throw for <br> elements (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs ElementHandle.hover should work (elementhandle.spec.ts)": [
"FAIL", "PASS"
],
"ElementHandle specs ElementHandle.isIntersectingViewport should work (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs Custom queries should register and unregister (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs Custom queries should throw with invalid query names (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs Custom queries should work for multiple elements (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs Custom queries should eval correctly (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs Custom queries should wait correctly with waitForSelector (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs Custom queries should wait correctly with waitFor (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs Custom queries should work when both queryOne and queryAll are registered (elementhandle.spec.ts)": [
"PASS"
],
"ElementHandle specs Custom queries should eval when both queryOne and queryAll are registered (elementhandle.spec.ts)": [
"PASS"
],
"Emulation Page.viewport should get the proper viewport size (emulation.spec.ts)": [
"PASS"
],
"Emulation Page.viewport should support mobile emulation (emulation.spec.ts)": [
"PASS"
],
"Emulation Page.viewport should support touch emulation (emulation.spec.ts)": [
"PASS"
],
"Emulation Page.viewport should be detectable by Modernizr (emulation.spec.ts)": [
"PASS"
],
"Emulation Page.viewport should detect touch when applying viewport with touches (emulation.spec.ts)": [
"PASS"
],
"Emulation Page.viewport should support landscape emulation (emulation.spec.ts)": [
"FAIL"
],
"Emulation Page.emulate should work (emulation.spec.ts)": [
"PASS"
],
"Emulation Page.emulate should support clicking (emulation.spec.ts)": [
"PASS", "FAIL"
],
"Emulation Page.emulateMediaType should work (emulation.spec.ts)": [
"FAIL"
],
"Emulation Page.emulateMediaType should throw in case of bad argument (emulation.spec.ts)": [
"PASS"
],
"Emulation Page.emulateMediaFeatures should work (emulation.spec.ts)": [
"FAIL"
],
"Emulation Page.emulateMediaFeatures should throw in case of bad argument (emulation.spec.ts)": [
"PASS"
],
"Emulation Page.emulateTimezone should work (emulation.spec.ts)": [
"FAIL"
],
"Emulation Page.emulateTimezone should throw for invalid timezone IDs (emulation.spec.ts)": [
"FAIL"
],
"Emulation Page.emulateVisionDeficiency should work (emulation.spec.ts)": [
"FAIL"
],
"Emulation Page.emulateVisionDeficiency should throw for invalid vision deficiencies (emulation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should work (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should transfer BigInt (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should transfer NaN (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should transfer -0 (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should transfer Infinity (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should transfer -Infinity (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should transfer arrays (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should transfer arrays as arrays, not objects (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should modify global environment (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should evaluate in the page context (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should return undefined for objects with symbols (evaluation.spec.ts)": [
"FAIL"
],
"Evaluation specs Page.evaluate should work with function shorthands (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should work with unicode chars (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should throw when evaluation triggers reload (evaluation.spec.ts)": [
"TIMEOUT"
],
"Evaluation specs Page.evaluate should await promise (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should work right after framenavigated (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should work from-inside an exposed function (evaluation.spec.ts)": [
"FAIL"
],
"Evaluation specs Page.evaluate should reject promise with exception (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should support thrown strings as error messages (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should support thrown numbers as error messages (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should return complex objects (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should return BigInt (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should return NaN (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should return -0 (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should return Infinity (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should return -Infinity (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should accept \"undefined\" as one of multiple parameters (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should properly serialize null fields (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should return undefined for non-serializable objects (evaluation.spec.ts)": [
"FAIL"
],
"Evaluation specs Page.evaluate should fail for circular object (evaluation.spec.ts)": [
"FAIL"
],
"Evaluation specs Page.evaluate should be able to throw a tricky error (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should accept a string (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should accept a string with semi colons (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should accept a string with comments (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should accept element handle as an argument (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should throw if underlying element was disposed (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should throw if elementHandles are from other frames (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should simulate a user gesture (evaluation.spec.ts)": [
"FAIL"
],
"Evaluation specs Page.evaluate should throw a nice error after a navigation (evaluation.spec.ts)": [
"FAIL"
],
"Evaluation specs Page.evaluate should not throw an error when evaluation does a navigation (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should transfer 100Mb of data from page to node.js (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluate should throw error with detailed information on exception inside promise (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Page.evaluateOnNewDocument should evaluate before anything else on the page (evaluation.spec.ts)": [
"FAIL"
],
"Evaluation specs Page.evaluateOnNewDocument should work with CSP (evaluation.spec.ts)": [
"FAIL"
],
"Evaluation specs Frame.evaluate should have different execution contexts (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Frame.evaluate should have correct execution contexts (evaluation.spec.ts)": [
"PASS"
],
"Evaluation specs Frame.evaluate should execute after cross-site navigation (evaluation.spec.ts)": [
"PASS"
],
"EventEmitter on on: adds an event listener that is fired when the event is emitted (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter on on sends the event data to the handler (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter on on: supports chaining (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter on addListener: adds an event listener that is fired when the event is emitted (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter on addListener sends the event data to the handler (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter on addListener: supports chaining (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter off off: removes the listener so it is no longer called (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter off off: supports chaining (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter off removeListener: removes the listener so it is no longer called (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter off removeListener: supports chaining (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter once only calls the listener once and then removes it (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter once supports chaining (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter emit calls all the listeners for an event (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter emit passes data through to the listener (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter emit returns true if the event has listeners (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter emit returns false if the event has listeners (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter listenerCount returns the number of listeners for the given event (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter removeAllListeners removes every listener from all events by default (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter removeAllListeners returns the emitter for chaining (EventEmitter.spec.ts)": [
"PASS"
],
"EventEmitter removeAllListeners can filter to remove only listeners for a given event name (EventEmitter.spec.ts)": [
"PASS"
],
"Fixtures dumpio option should work with pipe option (fixtures.spec.ts)": [
"SKIP"
],
"Fixtures should dump browser process stderr (fixtures.spec.ts)": [
"PASS"
],
"Fixtures should close the browser when the node process closes (fixtures.spec.ts)": [
"PASS"
],
"Frame specs Frame.executionContext should work (frame.spec.ts)": [
"PASS"
],
"Frame specs Frame.evaluateHandle should work (frame.spec.ts)": [
"PASS"
],
"Frame specs Frame.evaluate should throw for detached frames (frame.spec.ts)": [
"PASS"
],
"Frame specs Frame Management should handle nested frames (frame.spec.ts)": [
"PASS"
],
"Frame specs Frame Management should send events when frames are manipulated dynamically (frame.spec.ts)": [
"FAIL"
],
"Frame specs Frame Management should send \"framenavigated\" when navigating on anchor URLs (frame.spec.ts)": [
"TIMEOUT"
],
"Frame specs Frame Management should persist mainFrame on cross-process navigation (frame.spec.ts)": [
"PASS"
],
"Frame specs Frame Management should not send attach/detach events for main frame (frame.spec.ts)": [
"PASS"
],
"Frame specs Frame Management should detach child frames on navigation (frame.spec.ts)": [
"FAIL"
],
"Frame specs Frame Management should support framesets (frame.spec.ts)": [
"FAIL"
],
"Frame specs Frame Management should report frame from-inside shadow DOM (frame.spec.ts)": [
"PASS"
],
"Frame specs Frame Management should report frame.name() (frame.spec.ts)": [
"PASS"
],
"Frame specs Frame Management should report frame.parent() (frame.spec.ts)": [
"PASS"
],
"Frame specs Frame Management should report different frame instance when frame re-attaches (frame.spec.ts)": [
"PASS"
],
"Frame specs Frame Management should support url fragment (frame.spec.ts)": [
"PASS"
],
"Emulate idle state changing idle state emulation causes change of the IdleDetector state (idle_override.spec.ts)": [
"FAIL"
],
"ignoreHTTPSErrors should work (ignorehttpserrors.spec.ts)": [
"PASS"
],
"ignoreHTTPSErrors should work with request interception (ignorehttpserrors.spec.ts)": [
"FAIL"
],
"ignoreHTTPSErrors should work with mixed content (ignorehttpserrors.spec.ts)": [
"PASS"
],
"ignoreHTTPSErrors Response.securityDetails should work (ignorehttpserrors.spec.ts)": [
"FAIL"
],
"ignoreHTTPSErrors Response.securityDetails should be |null| for non-secure requests (ignorehttpserrors.spec.ts)": [
"PASS"
],
"ignoreHTTPSErrors Response.securityDetails Network redirects should report SecurityDetails (ignorehttpserrors.spec.ts)": [
"PASS", "FAIL"
],
"input tests input should upload the file (input.spec.ts)": [
"SKIP"
],
"input tests Page.waitForFileChooser should work when file input is attached to DOM (input.spec.ts)": [
"SKIP"
],
"input tests Page.waitForFileChooser should work when file input is not attached to DOM (input.spec.ts)": [
"SKIP"
],
"input tests Page.waitForFileChooser should respect timeout (input.spec.ts)": [
"SKIP"
],
"input tests Page.waitForFileChooser should respect default timeout when there is no custom timeout (input.spec.ts)": [
"SKIP"
],
"input tests Page.waitForFileChooser should prioritize exact timeout over default timeout (input.spec.ts)": [
"SKIP"
],
"input tests Page.waitForFileChooser should work with no timeout (input.spec.ts)": [
"SKIP"
],
"input tests Page.waitForFileChooser should return the same file chooser when there are many watchdogs simultaneously (input.spec.ts)": [
"SKIP"
],
"input tests FileChooser.accept should accept single file (input.spec.ts)": [
"SKIP"
],
"input tests FileChooser.accept should be able to read selected file (input.spec.ts)": [
"SKIP"
],
"input tests FileChooser.accept should be able to reset selected files with empty file list (input.spec.ts)": [
"SKIP"
],
"input tests FileChooser.accept should not accept multiple files for single-file input (input.spec.ts)": [
"SKIP"
],
"input tests FileChooser.accept should fail for non-existent files (input.spec.ts)": [
"SKIP"
],
"input tests FileChooser.accept should fail when accepting file chooser twice (input.spec.ts)": [
"SKIP"
],
"input tests FileChooser.cancel should cancel dialog (input.spec.ts)": [
"SKIP"
],
"input tests FileChooser.cancel should fail when canceling file chooser twice (input.spec.ts)": [
"SKIP"
],
"input tests FileChooser.isMultiple should work for single file pick (input.spec.ts)": [
"SKIP"
],
"input tests FileChooser.isMultiple should work for \"multiple\" (input.spec.ts)": [
"SKIP"
],
"input tests FileChooser.isMultiple should work for \"webkitdirectory\" (input.spec.ts)": [
"SKIP"
],
"JSHandle Page.evaluateHandle should work (jshandle.spec.ts)": [
"PASS"
],
"JSHandle Page.evaluateHandle should accept object handle as an argument (jshandle.spec.ts)": [
"PASS"
],
"JSHandle Page.evaluateHandle should accept object handle to primitive types (jshandle.spec.ts)": [
"PASS"
],
"JSHandle Page.evaluateHandle should warn on nested object handles (jshandle.spec.ts)": [
"PASS"
],
"JSHandle Page.evaluateHandle should accept object handle to unserializable value (jshandle.spec.ts)": [
"PASS"
],
"JSHandle Page.evaluateHandle should use the same JS wrappers (jshandle.spec.ts)": [
"PASS"
],
"JSHandle Page.evaluateHandle should work with primitives (jshandle.spec.ts)": [
"PASS"
],
"JSHandle JSHandle.getProperty should work (jshandle.spec.ts)": [
"PASS"
],
"JSHandle JSHandle.jsonValue should work (jshandle.spec.ts)": [
"PASS"
],
"JSHandle JSHandle.jsonValue should not work with dates (jshandle.spec.ts)": [
"FAIL"
],
"JSHandle JSHandle.jsonValue should throw for circular objects (jshandle.spec.ts)": [
"PASS"
],
"JSHandle JSHandle.getProperties should work (jshandle.spec.ts)": [
"PASS"
],
"JSHandle JSHandle.getProperties should return even non-own properties (jshandle.spec.ts)": [
"PASS"
],
"JSHandle JSHandle.asElement should work (jshandle.spec.ts)": [
"PASS"
],
"JSHandle JSHandle.asElement should return null for non-elements (jshandle.spec.ts)": [
"PASS"
],
"JSHandle JSHandle.asElement should return ElementHandle for TextNodes (jshandle.spec.ts)": [
"PASS"
],
"JSHandle JSHandle.toString should work for primitives (jshandle.spec.ts)": [
"PASS"
],
"JSHandle JSHandle.toString should work for complicated objects (jshandle.spec.ts)": [
"PASS"
],
"JSHandle JSHandle.toString should work with different subtypes (jshandle.spec.ts)": [
"PASS"
],
"Keyboard should type into a textarea (keyboard.spec.ts)": [
"PASS"
],
"Keyboard should press the metaKey (keyboard.spec.ts)": [
"FAIL"
],
"Keyboard should move with the arrow keys (keyboard.spec.ts)": [
"PASS"
],
"Keyboard should send a character with ElementHandle.press (keyboard.spec.ts)": [
"PASS"
],
"Keyboard ElementHandle.press should support |text| option (keyboard.spec.ts)": [
"FAIL"
],
"Keyboard should send a character with sendCharacter (keyboard.spec.ts)": [
"FAIL"
],
"Keyboard should report shiftKey (keyboard.spec.ts)": [
"PASS", "FAIL"
],
"Keyboard should report multiple modifiers (keyboard.spec.ts)": [
"PASS"
],
"Keyboard should send proper codes while typing (keyboard.spec.ts)": [
"PASS"
],
"Keyboard should send proper codes while typing with shift (keyboard.spec.ts)": [
"PASS"
],
"Keyboard should not type canceled events (keyboard.spec.ts)": [
"PASS"
],
"Keyboard should specify repeat property (keyboard.spec.ts)": [
"FAIL"
],
"Keyboard should type all kinds of characters (keyboard.spec.ts)": [
"FAIL"
],
"Keyboard should specify location (keyboard.spec.ts)": [
"FAIL"
],
"Keyboard should throw on unknown keys (keyboard.spec.ts)": [
"PASS"
],
"Keyboard should type emoji (keyboard.spec.ts)": [
"FAIL"
],
"Keyboard should type emoji into an iframe (keyboard.spec.ts)": [
"FAIL"
],
"Keyboard should press the meta key (keyboard.spec.ts)": [
"PASS", "FAIL"
],
"Launcher specs Puppeteer BrowserFetcher should download and extract chrome linux binary (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer BrowserFetcher should download and extract firefox linux binary (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Browser.disconnect should reject navigation when browser closes (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Browser.disconnect should reject waitForSelector when browser closes (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Browser.close should terminate network waiters (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch should reject all promises when browser is closed (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch should reject if executable path is invalid (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch userDataDir option (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch userDataDir argument (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch userDataDir option should restore state (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch userDataDir option should restore cookies (launcher.spec.ts)": [
"SKIP"
],
"Launcher specs Puppeteer Puppeteer.launch should return the default arguments (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch should report the correct product (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch should work with no default arguments (launcher.spec.ts)": [
"FAIL", "PASS"
],
"Launcher specs Puppeteer Puppeteer.launch should filter out ignored default arguments (launcher.spec.ts)": [
"FAIL", "PASS"
],
"Launcher specs Puppeteer Puppeteer.launch should have default URL when launching browser (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch should have custom URL when launching browser (launcher.spec.ts)": [
"PASS", "TIMEOUT"
],
"Launcher specs Puppeteer Puppeteer.launch should set the default viewport (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch should disable the default viewport (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch should take fullPage screenshots when defaultViewport is null (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.launch should be able to launch Chrome (launcher.spec.ts)": [
"SKIP"
],
"Launcher specs Puppeteer Puppeteer.launch falls back to launching chrome if there is an unknown product but logs a warning (launcher.spec.ts)": [
"FAIL"
],
"Launcher specs Puppeteer Puppeteer.launch should be able to launch Firefox (launcher.spec.ts)": [
"SKIP"
],
"Launcher specs Puppeteer Puppeteer.connect should be able to connect multiple times to the same browser (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.connect should be able to close remote browser (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.connect should support ignoreHTTPSErrors option (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.connect should be able to reconnect to a disconnected browser (launcher.spec.ts)": [
"PASS"
],
"Launcher specs Puppeteer Puppeteer.connect should be able to connect to the same page simultaneously (launcher.spec.ts)": [
"FAIL"
],
"Launcher specs Puppeteer Puppeteer.executablePath should work (launcher.spec.ts)": [
"SKIP"
],
"Launcher specs Browser target events should work (launcher.spec.ts)": [
"FAIL"
],
"Launcher specs Browser.Events.disconnected should be emitted when: browser gets closed, disconnected or underlying websocket gets closed (launcher.spec.ts)": [
"PASS"
],
"Mouse should click the document (mouse.spec.ts)": [
"PASS"
],
"Mouse should resize the textarea (mouse.spec.ts)": [
"FAIL", "PASS"
],
"Mouse should select the text with mouse (mouse.spec.ts)": [
"FAIL", "PASS"
],
"Mouse should trigger hover state (mouse.spec.ts)": [
"PASS", "FAIL"
],
"Mouse should trigger hover state with removed window.Node (mouse.spec.ts)": [
"FAIL"
],
"Mouse should set modifier keys on click (mouse.spec.ts)": [
"PASS"
],
"Mouse should send mouse wheel events (mouse.spec.ts)": [
"FAIL"
],
"Mouse should tween mouse movement (mouse.spec.ts)": [
"PASS", "FAIL"
],
"Mouse should work with mobile viewports and cross process navigations (mouse.spec.ts)": [
"PASS"
],
"navigation Page.goto should work (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should work with anchor navigation (navigation.spec.ts)": [
"TIMEOUT"
],
"navigation Page.goto should work with redirects (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should navigate to about:blank (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should return response when page changes its URL after load (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should work with subframes return 204 (navigation.spec.ts)": [
"TIMEOUT"
],
"navigation Page.goto should fail when server returns 204 (navigation.spec.ts)": [
"TIMEOUT"
],
"navigation Page.goto should navigate to empty page with domcontentloaded (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should work when page calls history API in beforeunload (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should navigate to empty page with networkidle0 (navigation.spec.ts)": [
"TIMEOUT"
],
"navigation Page.goto should navigate to empty page with networkidle2 (navigation.spec.ts)": [
"TIMEOUT"
],
"navigation Page.goto should fail when navigating to bad url (navigation.spec.ts)": [
"FAIL"
],
"navigation Page.goto should fail when navigating to bad SSL (navigation.spec.ts)": [
"FAIL"
],
"navigation Page.goto should fail when navigating to bad SSL after redirects (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should throw if networkidle is passed as an option (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should fail when main resources failed to load (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should fail when exceeding maximum navigation timeout (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should fail when exceeding default maximum navigation timeout (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should fail when exceeding default maximum timeout (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should prioritize default navigation timeout over default timeout (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should disable timeout when its set to 0 (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should work when navigating to valid url (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should work when navigating to data url (navigation.spec.ts)": [
"FAIL"
],
"navigation Page.goto should work when navigating to 404 (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should return last response in redirect chain (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should wait for network idle to succeed navigation (navigation.spec.ts)": [
"TIMEOUT"
],
"navigation Page.goto should not leak listeners during navigation (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should not leak listeners during bad navigation (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should not leak listeners during navigation of 11 pages (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should navigate to dataURL and fire dataURL requests (navigation.spec.ts)": [
"FAIL"
],
"navigation Page.goto should navigate to URL with hash and fire requests without hash (navigation.spec.ts)": [
"FAIL"
],
"navigation Page.goto should work with self requesting page (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should fail when navigating and show the url at the error message (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goto should send referer (navigation.spec.ts)": [
"FAIL"
],
"navigation Page.waitForNavigation should work (navigation.spec.ts)": [
"PASS", "FAIL"
],
"navigation Page.waitForNavigation should work with both domcontentloaded and load (navigation.spec.ts)": [
"PASS"
],
"navigation Page.waitForNavigation should work with clicking on anchor links (navigation.spec.ts)": [
"TIMEOUT", "FAIL"
],
"navigation Page.waitForNavigation should work with history.pushState() (navigation.spec.ts)": [
"FAIL", "TIMEOUT"
],
"navigation Page.waitForNavigation should work with history.replaceState() (navigation.spec.ts)": [
"FAIL", "TIMEOUT"
],
"navigation Page.waitForNavigation should work with DOM history.back()/history.forward() (navigation.spec.ts)": [
"FAIL", "TIMEOUT"
],
"navigation Page.waitForNavigation should work when subframe issues window.stop() (navigation.spec.ts)": [
"TIMEOUT"
],
"navigation Page.goBack should work (navigation.spec.ts)": [
"PASS"
],
"navigation Page.goBack should work with HistoryAPI (navigation.spec.ts)": [
"FAIL"
],
"navigation Frame.goto should navigate subframes (navigation.spec.ts)": [
"FAIL"
],
"navigation Frame.goto should reject when frame detaches (navigation.spec.ts)": [
"TIMEOUT"
],
"navigation Frame.goto should return matching responses (navigation.spec.ts)": [
"TIMEOUT"
],
"navigation Frame.waitForNavigation should work (navigation.spec.ts)": [
"FAIL"
],
"navigation Frame.waitForNavigation should fail when frame detaches (navigation.spec.ts)": [
"PASS"
],
"navigation Page.reload should work (navigation.spec.ts)": [
"PASS"
],
"network Page.Events.Request should fire for navigation requests (network.spec.ts)": [
"PASS"
],
"network Page.Events.Request should fire for iframes (network.spec.ts)": [
"PASS"
],
"network Page.Events.Request should fire for fetches (network.spec.ts)": [
"PASS"
],
"network Request.frame should work for main frame navigation request (network.spec.ts)": [
"PASS"
],
"network Request.frame should work for subframe navigation request (network.spec.ts)": [
"PASS"
],
"network Request.frame should work for fetch requests (network.spec.ts)": [
"PASS"
],
"network Request.headers should work (network.spec.ts)": [
"PASS"
],
"network Response.headers should work (network.spec.ts)": [
"PASS"
],
"network Response.fromCache should return |false| for non-cached content (network.spec.ts)": [
"PASS"
],
"network Response.fromCache should work (network.spec.ts)": [
"FAIL"
],
"network Response.fromServiceWorker should return |false| for non-service-worker content (network.spec.ts)": [
"PASS"
],
"network Response.fromServiceWorker Response.fromServiceWorker (network.spec.ts)": [
"TIMEOUT"
],
"network Request.postData should work (network.spec.ts)": [
"FAIL"
],
"network Request.postData should be |undefined| when there is no post data (network.spec.ts)": [
"PASS"
],
"network Response.text should work (network.spec.ts)": [
"TIMEOUT"
],
"network Response.text should return uncompressed text (network.spec.ts)": [
"TIMEOUT"
],
"network Response.text should throw when requesting body of redirected response (network.spec.ts)": [
"FAIL"
],
"network Response.text should wait until response completes (network.spec.ts)": [
"TIMEOUT"
],
"network Response.json should work (network.spec.ts)": [
"TIMEOUT"
],
"network Response.buffer should work (network.spec.ts)": [
"TIMEOUT"
],
"network Response.buffer should work with compression (network.spec.ts)": [
"TIMEOUT"
],
"network Response.statusText should work (network.spec.ts)": [
"PASS"
],
"network Network Events Page.Events.Request (network.spec.ts)": [
"FAIL", "PASS"
],
"network Network Events Page.Events.Response (network.spec.ts)": [
"PASS", "FAIL"
],
"network Network Events Page.Events.RequestFailed (network.spec.ts)": [
"FAIL"
],
"network Network Events Page.Events.RequestFinished (network.spec.ts)": [
"FAIL"
],
"network Network Events should fire events in proper order (network.spec.ts)": [
"FAIL"
],
"network Network Events should support redirects (network.spec.ts)": [
"FAIL"
],
"network Request.isNavigationRequest should work (network.spec.ts)": [
"FAIL"
],
"network Request.isNavigationRequest should work with request interception (network.spec.ts)": [
"FAIL"
],
"network Request.isNavigationRequest should work when navigating to image (network.spec.ts)": [
"PASS"
],
"network Page.setExtraHTTPHeaders should work (network.spec.ts)": [
"FAIL"
],
"network Page.setExtraHTTPHeaders should throw for non-string header values (network.spec.ts)": [
"PASS"
],
"network Page.authenticate should work (network.spec.ts)": [
"TIMEOUT"
],
"network Page.authenticate should fail if wrong credentials (network.spec.ts)": [
"FAIL"
],
"network Page.authenticate should allow disable authentication (network.spec.ts)": [
"FAIL"
],
"Page Page.close should reject all promises when page is closed (page.spec.ts)": [
"PASS"
],
"Page Page.close should not be visible in browser.pages (page.spec.ts)": [
"PASS"
],
"Page Page.close should run beforeunload if asked for (page.spec.ts)": [
"TIMEOUT"
],
"Page Page.close should *not* run beforeunload by default (page.spec.ts)": [
"TIMEOUT"
],
"Page Page.close should set the page close state (page.spec.ts)": [
"PASS"
],
"Page Page.close should terminate network waiters (page.spec.ts)": [
"TIMEOUT"
],
"Page Page.Events.Load should fire when expected (page.spec.ts)": [
"PASS"
],
"Page removing and adding event handlers should correctly fire event handlers as they are added and then removed (page.spec.ts)": [
"FAIL"
],
"Page Page.Events.error should throw when page crashes (page.spec.ts)": [
"TIMEOUT"
],
"Page Page.Events.Popup should work (page.spec.ts)": [
"FAIL"
],
"Page Page.Events.Popup should work with noopener (page.spec.ts)": [
"TIMEOUT"
],
"Page Page.Events.Popup should work with clicking target=_blank (page.spec.ts)": [
"TIMEOUT"
],
"Page Page.Events.Popup should work with fake-clicking target=_blank and rel=noopener (page.spec.ts)": [
"TIMEOUT"
],
"Page Page.Events.Popup should work with clicking target=_blank and rel=noopener (page.spec.ts)": [
"TIMEOUT"
],
"Page BrowserContext.overridePermissions should be prompt by default (page.spec.ts)": [
"PASS"
],
"Page BrowserContext.overridePermissions should deny permission when not listed (page.spec.ts)": [
"FAIL"
],
"Page BrowserContext.overridePermissions should fail when bad permission is given (page.spec.ts)": [
"PASS"
],
"Page BrowserContext.overridePermissions should grant permission when listed (page.spec.ts)": [
"FAIL"
],
"Page BrowserContext.overridePermissions should reset permissions (page.spec.ts)": [
"FAIL"
],
"Page BrowserContext.overridePermissions should trigger permission onchange (page.spec.ts)": [
"FAIL"
],
"Page BrowserContext.overridePermissions should isolate permissions between browser contexs (page.spec.ts)": [
"FAIL"
],
"Page Page.setGeolocation should work (page.spec.ts)": [
"FAIL"
],
"Page Page.setGeolocation should throw when invalid longitude (page.spec.ts)": [
"PASS"
],
"Page Page.setOfflineMode should work (page.spec.ts)": [
"FAIL"
],
"Page Page.setOfflineMode should emulate navigator.onLine (page.spec.ts)": [
"FAIL"
],
"Page ExecutionContext.queryObjects should work (page.spec.ts)": [
"FAIL"
],
"Page ExecutionContext.queryObjects should work for non-blank page (page.spec.ts)": [
"FAIL"
],
"Page ExecutionContext.queryObjects should fail for disposed handles (page.spec.ts)": [
"PASS"
],
"Page ExecutionContext.queryObjects should fail primitive values as prototypes (page.spec.ts)": [
"PASS"
],
"Page Page.Events.Console should work (page.spec.ts)": [
"FAIL"
],
"Page Page.Events.Console should work for different console API calls (page.spec.ts)": [
"FAIL"
],
"Page Page.Events.Console should not fail for window object (page.spec.ts)": [
"FAIL"
],
"Page Page.Events.Console should trigger correct Log (page.spec.ts)": [
"FAIL"
],
"Page Page.Events.Console should have location when fetch fails (page.spec.ts)": [
"FAIL"
],
"Page Page.Events.Console should have location and stack trace for console API calls (page.spec.ts)": [
"FAIL"
],
"Page Page.Events.Console should not throw when there are console messages in detached iframes (page.spec.ts)": [
"PASS"
],
"Page Page.Events.DOMContentLoaded should fire when expected (page.spec.ts)": [
"PASS"
],
"Page Page.metrics should get metrics from a page (page.spec.ts)": [
"FAIL"
],
"Page Page.metrics metrics event fired on console.timeStamp (page.spec.ts)": [
"TIMEOUT"
],
"Page Page.waitForRequest should work (page.spec.ts)": [
"PASS"
],
"Page Page.waitForRequest should work with predicate (page.spec.ts)": [
"PASS"
],
"Page Page.waitForRequest should respect timeout (page.spec.ts)": [
"PASS"
],
"Page Page.waitForRequest should respect default timeout (page.spec.ts)": [
"PASS"
],
"Page Page.waitForRequest should work with no timeout (page.spec.ts)": [
"PASS"
],
"Page Page.waitForResponse should work (page.spec.ts)": [
"PASS"
],
"Page Page.waitForResponse should respect timeout (page.spec.ts)": [
"PASS"
],
"Page Page.waitForResponse should respect default timeout (page.spec.ts)": [
"PASS"
],
"Page Page.waitForResponse should work with predicate (page.spec.ts)": [
"PASS"
],
"Page Page.waitForResponse should work with no timeout (page.spec.ts)": [
"PASS"
],
"Page Page.exposeFunction should work (page.spec.ts)": [
"FAIL"
],
"Page Page.exposeFunction should throw exception in page context (page.spec.ts)": [
"FAIL"
],
"Page Page.exposeFunction should support throwing \"null\" (page.spec.ts)": [
"FAIL"
],
"Page Page.exposeFunction should be callable from-inside evaluateOnNewDocument (page.spec.ts)": [
"FAIL"
],
"Page Page.exposeFunction should survive navigation (page.spec.ts)": [
"FAIL"
],
"Page Page.exposeFunction should await returned promise (page.spec.ts)": [
"FAIL"
],
"Page Page.exposeFunction should work on frames (page.spec.ts)": [
"FAIL"
],
"Page Page.exposeFunction should work on frames before navigation (page.spec.ts)": [
"FAIL"
],
"Page Page.exposeFunction should work with complex objects (page.spec.ts)": [
"FAIL"
],
"Page Page.Events.PageError should fire (page.spec.ts)": [
"PASS"
],
"Page Page.setUserAgent should work (page.spec.ts)": [
"PASS"
],
"Page Page.setUserAgent should work for subframes (page.spec.ts)": [
"PASS"
],
"Page Page.setUserAgent should emulate device user-agent (page.spec.ts)": [
"PASS"
],
"Page Page.setContent should work (page.spec.ts)": [
"PASS"
],
"Page Page.setContent should work with doctype (page.spec.ts)": [
"PASS"
],
"Page Page.setContent should work with HTML 4 doctype (page.spec.ts)": [
"PASS"
],
"Page Page.setContent should respect timeout (page.spec.ts)": [
"PASS"
],
"Page Page.setContent should respect default navigation timeout (page.spec.ts)": [
"PASS"
],
"Page Page.setContent should await resources to load (page.spec.ts)": [
"PASS"
],
"Page Page.setContent should work fast enough (page.spec.ts)": [
"PASS"
],
"Page Page.setContent should work with tricky content (page.spec.ts)": [
"PASS"
],
"Page Page.setContent should work with accents (page.spec.ts)": [
"PASS"
],
"Page Page.setContent should work with emojis (page.spec.ts)": [
"PASS"
],
"Page Page.setContent should work with newline (page.spec.ts)": [
"PASS"
],
"Page Page.setBypassCSP should bypass CSP meta tag (page.spec.ts)": [
"FAIL"
],
"Page Page.setBypassCSP should bypass CSP header (page.spec.ts)": [
"FAIL"
],
"Page Page.setBypassCSP should bypass after cross-process navigation (page.spec.ts)": [
"FAIL"
],
"Page Page.setBypassCSP should bypass CSP in iframes as well (page.spec.ts)": [
"FAIL"
],
"Page Page.addScriptTag should throw an error if no options are provided (page.spec.ts)": [
"PASS"
],
"Page Page.addScriptTag should work with a url (page.spec.ts)": [
"PASS"
],
"Page Page.addScriptTag should work with a url and type=module (page.spec.ts)": [
"PASS"
],
"Page Page.addScriptTag should work with a path and type=module (page.spec.ts)": [
"PASS"
],
"Page Page.addScriptTag should work with a content and type=module (page.spec.ts)": [
"PASS"
],
"Page Page.addScriptTag should throw an error if loading from url fail (page.spec.ts)": [
"PASS"
],
"Page Page.addScriptTag should work with a path (page.spec.ts)": [
"PASS"
],
"Page Page.addScriptTag should include sourcemap when path is provided (page.spec.ts)": [
"PASS"
],
"Page Page.addScriptTag should work with content (page.spec.ts)": [
"PASS"
],
"Page Page.addScriptTag should throw when added with content to the CSP page (page.spec.ts)": [
"SKIP"
],
"Page Page.addScriptTag should throw when added with URL to the CSP page (page.spec.ts)": [
"PASS"
],
"Page Page.addStyleTag should throw an error if no options are provided (page.spec.ts)": [
"PASS"
],
"Page Page.addStyleTag should work with a url (page.spec.ts)": [
"PASS"
],
"Page Page.addStyleTag should throw an error if loading from url fail (page.spec.ts)": [
"PASS"
],
"Page Page.addStyleTag should work with a path (page.spec.ts)": [
"PASS"
],
"Page Page.addStyleTag should include sourcemap when path is provided (page.spec.ts)": [
"PASS"
],
"Page Page.addStyleTag should work with content (page.spec.ts)": [
"PASS"
],
"Page Page.addStyleTag should throw when added with content to the CSP page (page.spec.ts)": [
"TIMEOUT"
],
"Page Page.addStyleTag should throw when added with URL to the CSP page (page.spec.ts)": [
"PASS"
],
"Page Page.url should work (page.spec.ts)": [
"PASS"
],
"Page Page.setJavaScriptEnabled should work (page.spec.ts)": [
"FAIL"
],
"Page Page.setCacheEnabled should enable or disable the cache based on the state passed (page.spec.ts)": [
"FAIL"
],
"Page Page.setCacheEnabled should stay disabled when toggling request interception on/off (page.spec.ts)": [
"FAIL"
],
"Page printing to PDF can print to PDF and save to file (page.spec.ts)": [
"PASS"
],
"Page Page.title should return the page title (page.spec.ts)": [
"PASS"
],
"Page Page.select should select single option (page.spec.ts)": [
"PASS"
],
"Page Page.select should select only first option (page.spec.ts)": [
"PASS"
],
"Page Page.select should not throw when select causes navigation (page.spec.ts)": [
"PASS"
],
"Page Page.select should select multiple options (page.spec.ts)": [
"PASS"
],
"Page Page.select should respect event bubbling (page.spec.ts)": [
"PASS"
],
"Page Page.select should throw when element is not a <select> (page.spec.ts)": [
"PASS"
],
"Page Page.select should return [] on no matched values (page.spec.ts)": [
"PASS"
],
"Page Page.select should return an array of matched values (page.spec.ts)": [
"PASS"
],
"Page Page.select should return an array of one element when multiple is not set (page.spec.ts)": [
"PASS"
],
"Page Page.select should return [] on no values (page.spec.ts)": [
"PASS"
],
"Page Page.select should deselect all options when passed no values for a multiple select (page.spec.ts)": [
"PASS"
],
"Page Page.select should deselect all options when passed no values for a select without multiple (page.spec.ts)": [
"PASS"
],
"Page Page.select should throw if passed in non-strings (page.spec.ts)": [
"PASS"
],
"Page Page.select should work when re-defining top-level Event class (page.spec.ts)": [
"FAIL"
],
"Page Page.Events.Close should work with window.close (page.spec.ts)": [
"SKIP"
],
"Page Page.Events.Close should work with page.close (page.spec.ts)": [
"PASS"
],
"Page Page.browser should return the correct browser instance (page.spec.ts)": [
"PASS"
],
"Page Page.browserContext should return the correct browser instance (page.spec.ts)": [
"PASS"
],
"querySelector Page.$eval should work (queryselector.spec.ts)": [
"PASS"
],
"querySelector Page.$eval should accept arguments (queryselector.spec.ts)": [
"PASS"
],
"querySelector Page.$eval should accept ElementHandles as arguments (queryselector.spec.ts)": [
"PASS"
],
"querySelector Page.$eval should throw error if no element is found (queryselector.spec.ts)": [
"PASS"
],
"querySelector pierceHandler should find first element in shadow (queryselector.spec.ts)": [
"PASS"
],
"querySelector pierceHandler should find all elements in shadow (queryselector.spec.ts)": [
"PASS"
],
"querySelector Page.$$eval should work (queryselector.spec.ts)": [
"PASS"
],
"querySelector Page.$$eval should accept extra arguments (queryselector.spec.ts)": [
"PASS"
],
"querySelector Page.$$eval should accept ElementHandles as arguments (queryselector.spec.ts)": [
"PASS"
],
"querySelector Page.$$eval should handle many elements (queryselector.spec.ts)": [
"PASS"
],
"querySelector Page.$ should query existing element (queryselector.spec.ts)": [
"PASS"
],
"querySelector Page.$ should return null for non-existing element (queryselector.spec.ts)": [
"PASS"
],
"querySelector Page.$$ should query existing elements (queryselector.spec.ts)": [
"PASS"
],
"querySelector Page.$$ should return empty array if nothing is found (queryselector.spec.ts)": [
"PASS"
],
"querySelector Path.$x should query existing element (queryselector.spec.ts)": [
"PASS"
],
"querySelector Path.$x should return empty array for non-existing element (queryselector.spec.ts)": [
"PASS"
],
"querySelector Path.$x should return multiple elements (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$ should query existing element (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$ should return null for non-existing element (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$eval should work (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$eval should retrieve content from subtree (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$eval should throw in case of missing selector (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$$eval should work (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$$eval should retrieve content from subtree (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$$eval should not throw in case of missing selector (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$$ should query existing elements (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$$ should return empty array for non-existing elements (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$x should query existing element (queryselector.spec.ts)": [
"PASS"
],
"querySelector ElementHandle.$x should return null for non-existing element (queryselector.spec.ts)": [
"PASS"
],
"querySelector QueryAll should have registered handler (queryselector.spec.ts)": [
"PASS"
],
"querySelector QueryAll $$ should query existing elements (queryselector.spec.ts)": [
"PASS"
],
"querySelector QueryAll $$ should return empty array for non-existing elements (queryselector.spec.ts)": [
"PASS"
],
"querySelector QueryAll $$eval should work (queryselector.spec.ts)": [
"PASS"
],
"querySelector QueryAll $$eval should accept extra arguments (queryselector.spec.ts)": [
"PASS"
],
"querySelector QueryAll $$eval should accept ElementHandles as arguments (queryselector.spec.ts)": [
"PASS"
],
"querySelector QueryAll $$eval should handle many elements (queryselector.spec.ts)": [
"PASS"
],
"request interception Page.setRequestInterception should intercept (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should work when POST is redirected with 302 (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should work when header manipulation headers with redirect (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should be able to remove headers (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should contain referer header (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should properly return navigation response when URL has cookies (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should stop intercepting (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should show custom HTTP headers (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should work with redirect inside sync XHR (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should work with custom referer headers (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should be abortable (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should be abortable with custom error codes (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should send referer (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should fail navigation when aborting main resource (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should work with redirects (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should work with redirects for subresources (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should be able to abort redirects (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should work with equal requests (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should navigate to dataURL and fire dataURL requests (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should be able to fetch dataURL and fire dataURL requests (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should navigate to URL with hash and fire requests without hash (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should work with encoded server (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should work with badly encoded server (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should work with encoded server - 2 (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should not throw \"Invalid Interception Id\" if the request was cancelled (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Page.setRequestInterception should throw if interception is not enabled (requestinterception.spec.ts)": [
"PASS"
],
"request interception Page.setRequestInterception should work with file URLs (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Request.continue should work (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Request.continue should amend HTTP headers (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Request.continue should redirect in a way non-observable to page (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Request.continue should amend method (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Request.continue should amend post data (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Request.continue should amend both post data and method on navigation (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Request.respond should work (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Request.respond should work with status code 422 (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Request.respond should redirect (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Request.respond should allow mocking binary responses (requestinterception.spec.ts)": [
"FAIL"
],
"request interception Request.respond should stringify intercepted request response headers (requestinterception.spec.ts)": [
"FAIL"
],
"Screenshots Page.screenshot should work (screenshot.spec.ts)": [
"FAIL"
],
"Screenshots Page.screenshot should clip rect (screenshot.spec.ts)": [
"FAIL"
],
"Screenshots Page.screenshot should clip elements to the viewport (screenshot.spec.ts)": [
"FAIL"
],
"Screenshots Page.screenshot should run in parallel (screenshot.spec.ts)": [
"PASS"
],
"Screenshots Page.screenshot should take fullPage screenshots (screenshot.spec.ts)": [
"FAIL"
],
"Screenshots Page.screenshot should run in parallel in multiple pages (screenshot.spec.ts)": [
"PASS"
],
"Screenshots Page.screenshot should allow transparency (screenshot.spec.ts)": [
"FAIL"
],
"Screenshots Page.screenshot should render white background on jpeg file (screenshot.spec.ts)": [
"FAIL"
],
"Screenshots Page.screenshot should work with odd clip size on Retina displays (screenshot.spec.ts)": [
"PASS"
],
"Screenshots Page.screenshot should return base64 (screenshot.spec.ts)": [
"FAIL"
],
"Screenshots ElementHandle.screenshot should work (screenshot.spec.ts)": [
"PASS"
],
"Screenshots ElementHandle.screenshot should take into account padding and border (screenshot.spec.ts)": [
"PASS"
],
"Screenshots ElementHandle.screenshot should capture full element when larger than viewport (screenshot.spec.ts)": [
"PASS"
],
"Screenshots ElementHandle.screenshot should scroll element into view (screenshot.spec.ts)": [
"PASS"
],
"Screenshots ElementHandle.screenshot should work with a rotated element (screenshot.spec.ts)": [
"FAIL"
],
"Screenshots ElementHandle.screenshot should fail to screenshot a detached element (screenshot.spec.ts)": [
"FAIL"
],
"Screenshots ElementHandle.screenshot should not hang with zero width/height element (screenshot.spec.ts)": [
"PASS"
],
"Screenshots ElementHandle.screenshot should work for an element with fractional dimensions (screenshot.spec.ts)": [
"PASS"
],
"Screenshots ElementHandle.screenshot should work for an element with an offset (screenshot.spec.ts)": [
"FAIL"
],
"Target Browser.targets should return all of the targets (target.spec.ts)": [
"PASS"
],
"Target Browser.pages should return all of the pages (target.spec.ts)": [
"PASS"
],
"Target should contain browser target (target.spec.ts)": [
"PASS"
],
"Target should be able to use the default page in the browser (target.spec.ts)": [
"PASS"
],
"Target should report when a new page is created and closed (target.spec.ts)": [
"FAIL"
],
"Target should report when a service worker is created and destroyed (target.spec.ts)": [
"TIMEOUT"
],
"Target should create a worker from a service worker (target.spec.ts)": [
"TIMEOUT"
],
"Target should create a worker from a shared worker (target.spec.ts)": [
"TIMEOUT"
],
"Target should report when a target url changes (target.spec.ts)": [
"TIMEOUT"
],
"Target should not report uninitialized pages (target.spec.ts)": [
"FAIL"
],
"Target should not crash while redirecting if original request was missed (target.spec.ts)": [
"FAIL"
],
"Target should have an opener (target.spec.ts)": [
"TIMEOUT", "FAIL"
],
"Target Browser.waitForTarget should wait for a target (target.spec.ts)": [
"TIMEOUT"
],
"Target Browser.waitForTarget should timeout waiting for a non-existent target (target.spec.ts)": [
"PASS"
],
"Touchscreen should tap the button (touchscreen.spec.ts)": [
"FAIL"
],
"Touchscreen should report touches (touchscreen.spec.ts)": [
"FAIL"
],
"waittask specs Page.waitFor should wait for selector (waittask.spec.ts)": [
"PASS"
],
"waittask specs Page.waitFor should wait for an xpath (waittask.spec.ts)": [
"PASS"
],
"waittask specs Page.waitFor should not allow you to select an element with single slash xpath (waittask.spec.ts)": [
"PASS"
],
"waittask specs Page.waitFor should timeout (waittask.spec.ts)": [
"PASS"
],
"waittask specs Page.waitFor should work with multiline body (waittask.spec.ts)": [
"PASS"
],
"waittask specs Page.waitFor should wait for predicate (waittask.spec.ts)": [
"PASS"
],
"waittask specs Page.waitFor should throw when unknown type (waittask.spec.ts)": [
"PASS"
],
"waittask specs Page.waitFor should wait for predicate with arguments (waittask.spec.ts)": [
"PASS"
],
"waittask specs Page.waitFor should log a deprecation warning (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should accept a string (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should work when resolved right before execution context disposal (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should poll on interval (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should poll on interval async (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should poll on mutation (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should poll on mutation async (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should poll on raf (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should poll on raf async (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should work with strict CSP policy (waittask.spec.ts)": [
"FAIL"
],
"waittask specs Frame.waitForFunction should throw on bad polling value (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should throw negative polling interval (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should return the success value as a JSHandle (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should return the window as a success value (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should accept ElementHandle arguments (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should respect timeout (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should respect default timeout (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should disable timeout when its set to 0 (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should survive cross-process navigation (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForFunction should survive navigations (waittask.spec.ts)": [
"PASS"
],
"waittask specs Page.waitForTimeout waits for the given timeout before resolving (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForTimeout waits for the given timeout before resolving (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should immediately resolve promise if node exists (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should work with removed MutationObserver (waittask.spec.ts)": [
"FAIL"
],
"waittask specs Frame.waitForSelector should resolve promise when node is added (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should work when node is added through innerHTML (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector Page.waitForSelector is shortcut for main frame (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should run in specified frame (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should throw when frame is detached (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should survive cross-process navigation (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should wait for visible (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should wait for visible recursively (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector hidden should wait for visibility: hidden (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector hidden should wait for display: none (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector hidden should wait for removal (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should return null if waiting to hide non-existing element (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should respect timeout (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should have an error message specifically for awaiting an element to be hidden (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should respond to node attribute mutation (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should return the element handle (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForSelector should have correct stack trace for timeout (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForXPath should support some fancy xpath (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForXPath should respect timeout (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForXPath should run in specified frame (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForXPath should throw when frame is detached (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForXPath hidden should wait for display: none (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForXPath should return the element handle (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForXPath should allow you to select a text node (waittask.spec.ts)": [
"PASS"
],
"waittask specs Frame.waitForXPath should allow you to select an element with single slash (waittask.spec.ts)": [
"PASS"
],
"Workers Page.workers (worker.spec.ts)": [
"SKIP"
],
"Workers should emit created and destroyed events (worker.spec.ts)": [
"SKIP"
],
"Workers should report console logs (worker.spec.ts)": [
"SKIP"
],
"Workers should have JSHandles for console logs (worker.spec.ts)": [
"SKIP"
],
"Workers should have an execution context (worker.spec.ts)": [
"SKIP"
],
"Workers should report errors (worker.spec.ts)": [
"SKIP"
]
}
|