Skip to content

Commit 1d4d4d4

Browse files
committed
temporarily set java and dotnet to run chrome tests with beta version to ensure it works with latest CDP
1 parent c1fdf42 commit 1d4d4d4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

dotnet/private/dotnet_nunit_test_suite.bzl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ _BROWSERS = {
1313
"--params=ActiveDriverConfig=Chrome",
1414
] + select({
1515
"@selenium//common:use_pinned_linux_chrome": [
16-
"--params=DriverServiceLocation=$(location @linux_chromedriver//:chromedriver)",
17-
"--params=BrowserLocation=$(location @linux_chrome//:chrome-linux64/chrome)",
16+
"--params=DriverServiceLocation=$(location @linux_beta_chromedriver//:chromedriver)",
17+
"--params=BrowserLocation=$(location @linux_beta_chrome//:chrome-linux64/chrome)",
1818
],
1919
"@selenium//common:use_pinned_macos_chrome": [
20-
"--params=DriverServiceLocation=$(location @mac_chromedriver//:chromedriver)",
21-
"--params=BrowserLocation=$(location @mac_chrome//:Chrome.app)/Contents/MacOS/Chrome",
20+
"--params=DriverServiceLocation=$(location @mac_beta_chromedriver//:chromedriver)",
21+
"--params=BrowserLocation=$(location @mac_beta_chrome//:Chrome.app)/Contents/MacOS/Chrome",
2222
],
2323
"@selenium//common:use_local_chromedriver": [],
2424
"//conditions:default": [

java/browsers.bzl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
chromedriver_jvm_flags = select({
22
"@selenium//common:use_pinned_linux_chrome": [
3-
"-Dwebdriver.chrome.driver=$(location @linux_chromedriver//:chromedriver)",
3+
"-Dwebdriver.chrome.driver=$(location @linux_beta_chromedriver//:chromedriver)",
44
],
55
"@selenium//common:use_pinned_macos_chrome": [
6-
"-Dwebdriver.chrome.driver=$(location @mac_chromedriver//:chromedriver)",
6+
"-Dwebdriver.chrome.driver=$(location @mac_beta_chromedriver//:chromedriver)",
77
],
88
"//conditions:default": [],
99
})
1010

1111
chrome_jvm_flags = select({
1212
"@selenium//common:use_pinned_linux_chrome": [
13-
"-Dwebdriver.chrome.binary=$(location @linux_chrome//:chrome-linux64/chrome)",
13+
"-Dwebdriver.chrome.binary=$(location @linux_beta_chrome//:chrome-linux64/chrome)",
1414
],
1515
"@selenium//common:use_pinned_macos_chrome": [
16-
"-Dwebdriver.chrome.binary=$(location @mac_chrome//:Chrome.app)/Contents/MacOS/Chrome",
16+
"-Dwebdriver.chrome.binary=$(location @mac_beta_chrome//:Chrome.app)/Contents/MacOS/Chrome",
1717
],
1818
"@selenium//common:use_local_chromedriver": [],
1919
"//conditions:default": [

0 commit comments

Comments
 (0)