We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ba8284 commit 6a1cce6Copy full SHA for 6a1cce6
seleniumbase/core/browser_launcher.py
@@ -2128,6 +2128,10 @@ def _set_chrome_options(
2128
binary_loc = detect_b_ver.get_binary_location(br_app, True)
2129
if os.path.exists(binary_loc):
2130
binary_location = binary_loc
2131
+ elif os.path.exists("/usr/bin/google-chrome-stable"):
2132
+ binary_location = "/usr/bin/google-chrome-stable"
2133
+ elif os.path.exists("/usr/bin/google-chrome"):
2134
+ binary_location = "/usr/bin/google-chrome"
2135
extra_disabled_features = []
2136
if chromium_arg:
2137
# Can be a comma-separated list of Chromium args or a list
0 commit comments