Skip to content

Commit f0bbbd1

Browse files
committed
Add browsers
1 parent 43a9fe1 commit f0bbbd1

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

MODULE.bazel

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -370,13 +370,16 @@ pin_browsers_extension = use_extension("//common:repositories.bzl", "pin_browser
370370
use_repo(
371371
pin_browsers_extension,
372372
"linux_beta_chrome",
373+
"linux_beta_chromedriver",
373374
"linux_beta_firefox",
374375
"linux_chrome",
375376
"linux_chromedriver",
376377
"linux_edge",
377378
"linux_edgedriver",
378379
"linux_firefox",
379380
"linux_geckodriver",
381+
"mac_beta_chrome",
382+
"mac_beta_chromedriver",
380383
"mac_beta_firefox",
381384
"mac_chrome",
382385
"mac_chromedriver",

common/browsers.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ firefox_beta_data = select({
8686

8787
chrome_beta_data = select({
8888
"@selenium//common:use_pinned_linux_chrome": [
89-
"@linux_chrome_beta//:files",
90-
"@linux_chrome_beta//:chrome-linux64/chrome",
89+
"@linux_beta_chrome//:files",
90+
"@linux_beta_chrome//:chrome-linux64/chrome",
9191
],
9292
"@selenium//common:use_pinned_macos_chrome": [
9393
"@mac_chrome_beta//:Chrome.app",

rb/spec/tests.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ BROWSERS = {
4242
"WD_SPEC_DRIVER": "chrome-beta",
4343
} | select({
4444
"@selenium//common:use_pinned_linux_chrome": {
45-
"CHROME_BINARY": "$(location @linux_chrome_beta//:chrome-linux64/chrome)",
46-
"CHROMEDRIVER_BINARY": "$(location @linux_chromedriver_beta//:chromedriver)",
45+
"CHROME_BINARY": "$(location @linux_beta_chrome//:chrome-linux64/chrome)",
46+
"CHROMEDRIVER_BINARY": "$(location @linux_beta_chromedriver//:chromedriver)",
4747
},
4848
"@selenium//common:use_pinned_macos_chrome": {
4949
"CHROME_BINARY": "$(location @mac_chrome_beta//:Chrome.app)/Contents/MacOS/Chrome",

rust/tests/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
load("@crates//:defs.bzl", "all_crate_deps")
2-
load("//rust:defs.bzl", "rust_library", "rust_test_suite", "rustfmt_config")
2+
load("//rust:defs.bzl", "rust_test_suite", "rustfmt_config")
33

44
rustfmt_config(
55
name = "enable-rustfmt",

0 commit comments

Comments
 (0)