@@ -441,7 +441,8 @@ BIDI_TESTS = glob(["test/selenium/webdriver/common/**/*bidi*_tests.py"])
441
441
"test/selenium/webdriver/common/**/*.py" ,
442
442
"test/selenium/webdriver/support/**/*.py" ,
443
443
],
444
- exclude = BIDI_TESTS + ["test/selenium/webdriver/common/print_pdf_tests.py" ],
444
+ exclude = BIDI_TESTS + ["test/selenium/webdriver/common/print_pdf_tests.py" ] +
445
+ (["test/selenium/webdriver/common/devtools_tests.py" ] if browser == "chrome-beta" else []),
445
446
),
446
447
args = [
447
448
"--instafail" ,
@@ -467,7 +468,8 @@ BIDI_TESTS = glob(["test/selenium/webdriver/common/**/*bidi*_tests.py"])
467
468
"test/selenium/webdriver/common/**/*.py" ,
468
469
"test/selenium/webdriver/support/**/*.py" ,
469
470
],
470
- exclude = ["test/selenium/webdriver/common/print_pdf_tests.py" ],
471
+ exclude = ["test/selenium/webdriver/common/print_pdf_tests.py" ] +
472
+ (["test/selenium/webdriver/common/devtools_tests.py" ] if browser == "chrome-beta" else []),
471
473
),
472
474
args = [
473
475
"--instafail" ,
@@ -534,6 +536,29 @@ py_test_suite(
534
536
] + TEST_DEPS ,
535
537
)
536
538
539
+ py_test_suite (
540
+ name = "test-chrome-beta" ,
541
+ size = "large" ,
542
+ srcs = glob (
543
+ [
544
+ "test/selenium/webdriver/chrome/**/*.py" ,
545
+ ],
546
+ ),
547
+ args = [
548
+ "--instafail" ,
549
+ ] + BROWSERS ["chrome-beta" ]["args" ],
550
+ data = BROWSERS ["chrome-beta" ]["data" ],
551
+ env_inherit = ["DISPLAY" ],
552
+ tags = [
553
+ "no-sandbox" ,
554
+ ] + BROWSERS ["chrome-beta" ]["tags" ],
555
+ deps = [
556
+ ":init-tree" ,
557
+ ":selenium" ,
558
+ ":webserver" ,
559
+ ] + TEST_DEPS ,
560
+ )
561
+
537
562
py_test_suite (
538
563
name = "test-edge" ,
539
564
size = "large" ,
0 commit comments