@@ -453,7 +453,8 @@ BIDI_TESTS = glob(["test/selenium/webdriver/common/**/*bidi*_tests.py"])
453453 "test/selenium/webdriver/common/**/*.py" ,
454454 "test/selenium/webdriver/support/**/*.py" ,
455455 ],
456- exclude = BIDI_TESTS + ["test/selenium/webdriver/common/print_pdf_tests.py" ],
456+ exclude = BIDI_TESTS + ["test/selenium/webdriver/common/print_pdf_tests.py" ] +
457+ (["test/selenium/webdriver/common/devtools_tests.py" ] if browser == "chrome-beta" else []),
457458 ),
458459 args = [
459460 "--instafail" ,
@@ -479,7 +480,8 @@ BIDI_TESTS = glob(["test/selenium/webdriver/common/**/*bidi*_tests.py"])
479480 "test/selenium/webdriver/common/**/*.py" ,
480481 "test/selenium/webdriver/support/**/*.py" ,
481482 ],
482- exclude = ["test/selenium/webdriver/common/print_pdf_tests.py" ],
483+ exclude = ["test/selenium/webdriver/common/print_pdf_tests.py" ] +
484+ (["test/selenium/webdriver/common/devtools_tests.py" ] if browser == "chrome-beta" else []),
483485 ),
484486 args = [
485487 "--instafail" ,
@@ -546,6 +548,29 @@ py_test_suite(
546548 ] + TEST_DEPS ,
547549)
548550
551+ py_test_suite (
552+ name = "test-chrome-beta" ,
553+ size = "large" ,
554+ srcs = glob (
555+ [
556+ "test/selenium/webdriver/chrome/**/*.py" ,
557+ ],
558+ ),
559+ args = [
560+ "--instafail" ,
561+ ] + BROWSERS ["chrome-beta" ]["args" ],
562+ data = BROWSERS ["chrome-beta" ]["data" ],
563+ env_inherit = ["DISPLAY" ],
564+ tags = [
565+ "no-sandbox" ,
566+ ] + BROWSERS ["chrome-beta" ]["tags" ],
567+ deps = [
568+ ":init-tree" ,
569+ ":selenium" ,
570+ ":webserver" ,
571+ ] + TEST_DEPS ,
572+ )
573+
549574py_test_suite (
550575 name = "test-edge" ,
551576 size = "large" ,
0 commit comments