"Fossies" - the Fresh Open Source Software Archive 
Member "selenium-selenium-4.8.1/java/test/org/openqa/selenium/bidi/BUILD.bazel" (17 Feb 2023, 1077 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 = "large-tests",
6 size = "large",
7 srcs = glob(["*Test.java"]),
8 browsers = [
9 "firefox",
10 ],
11 tags = [
12 "selenium-remote",
13 ],
14 deps = [
15 "//java/src/org/openqa/selenium/bidi",
16 "//java/src/org/openqa/selenium/firefox",
17 "//java/src/org/openqa/selenium/grid/security",
18 "//java/src/org/openqa/selenium/json",
19 "//java/src/org/openqa/selenium/remote",
20 "//java/src/org/openqa/selenium/support",
21 "//java/test/org/openqa/selenium/environment",
22 "//java/test/org/openqa/selenium/testing:annotations",
23 "//java/test/org/openqa/selenium/testing:test-base",
24 "//java/test/org/openqa/selenium/testing/drivers",
25 artifact("com.google.guava:guava"),
26 artifact("org.junit.jupiter:junit-jupiter-api"),
27 artifact("org.assertj:assertj-core"),
28 artifact("org.hamcrest:hamcrest"),
29 ] + JUNIT5_DEPS,
30 )