"Fossies" - the Fresh Open Source Software Archive

Member "selenium-selenium-4.8.1/java/test/com/thoughtworks/selenium/webdriven/BUILD.bazel" (17 Feb 2023, 1179 Bytes) of package /linux/www/selenium-selenium-4.8.1.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 load("@rules_jvm_external//:defs.bzl", "artifact")
    2 load("//java:defs.bzl", "JUNIT5_DEPS", "java_selenium_test_suite")
    3 
    4 java_selenium_test_suite(
    5     name = "LargeTests",
    6     size = "large",
    7     srcs = glob(["*Test.java"]),
    8     browsers = [
    9         "firefox",
   10     ],
   11     javacopts = [
   12         "--release",
   13         "11",
   14     ],
   15     tags = [
   16         "rc",
   17     ],
   18     deps = [
   19         "//java/src/com/thoughtworks/selenium",
   20         "//java/src/com/thoughtworks/selenium/webdriven",
   21         "//java/src/org/openqa/selenium/grid",
   22         "//java/src/org/openqa/selenium/jre/server",
   23         "//java/src/org/openqa/selenium/remote",
   24         "//java/src/org/openqa/selenium/remote/server",
   25         "//java/test/org/openqa/selenium/environment",
   26         "//java/test/org/openqa/selenium/remote/tracing:tracing-support",
   27         "//java/test/org/openqa/selenium/testing",
   28         artifact("io.opentelemetry:opentelemetry-api"),
   29         artifact("org.junit.jupiter:junit-jupiter-api"),
   30         artifact("org.junit.platform:junit-platform-suite-api"),
   31         artifact("org.junit.platform:junit-platform-suite-engine"),
   32         artifact("org.mockito:mockito-core"),
   33     ] + JUNIT5_DEPS,
   34 )