@@ -441,7 +441,8 @@ BIDI_TESTS = glob(["test/selenium/webdriver/common/**/*bidi*_tests.py"])
441441 "test/selenium/webdriver/common/**/*.py" ,
442442 "test/selenium/webdriver/support/**/*.py" ,
443443 ],
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 []),
445446 ),
446447 args = [
447448 "--instafail" ,
@@ -467,7 +468,8 @@ BIDI_TESTS = glob(["test/selenium/webdriver/common/**/*bidi*_tests.py"])
467468 "test/selenium/webdriver/common/**/*.py" ,
468469 "test/selenium/webdriver/support/**/*.py" ,
469470 ],
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 []),
471473 ),
472474 args = [
473475 "--instafail" ,
@@ -534,6 +536,29 @@ py_test_suite(
534536 ] + TEST_DEPS ,
535537)
536538
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+
537562py_test_suite (
538563 name = "test-edge" ,
539564 size = "large" ,
0 commit comments