Skip to content

Commit

Permalink
[bazel] Correct pinned browser path for chrome on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Mar 17, 2021
1 parent bad5628 commit 720451f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion java/browsers.bzl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
chrome_jvm_flags = select({
"@selenium//common:use_pinned_linux_chrome": [
"-Dwebdriver.chrome.driver=$(location @linux_chromedriver//:chromedriver)",
"-Dwebdriver.chrome.binary=$(location @linux_chrome//:chrome-linux)/linux-chrome/chrome",
"-Dwebdriver.chrome.binary=$(location @linux_chrome//:chrome-linux)/chrome",
],
"@selenium//common:use_pinned_macos_chrome": [
"-Dwebdriver.chrome.driver=$(location @mac_chromedriver//:chromedriver)",
Expand Down
2 changes: 1 addition & 1 deletion py/private/browsers.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ headless_args = select({
chrome_args = select({
"@selenium//common:use_pinned_linux_chrome": [
"--driver-binary=$(location @linux_chromedriver//:chromedriver)",
"--browser-binary=$(location @linux_chrome//:chrome-linux)/linux-chrome/chrome",
"--browser-binary=$(location @linux_chrome//:chrome-linux)/chrome",
],
"@selenium//common:use_pinned_macos_chrome": [
"--driver-binary=$(location @mac_chromedriver//:chromedriver)",
Expand Down

0 comments on commit 720451f

Please sign in to comment.