Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/rb/spec/integration/selenium/webdriver/chrome/BUILD.bazel
1865 views
load("//rb/spec:tests.bzl", "rb_integration_test")

[
    rb_integration_test(
        name = file[:-8],
        srcs = [file],
        # No need to run in other browsers.
        browsers = [
            "chrome",
            "chrome-beta",
        ],
        data = ["//common/extensions"],
    )
    for file in glob(["*_spec.rb"])
]