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 4d75b5e commit 8f740dfCopy full SHA for 8f740df
seleniumbase/core/browser_launcher.py
@@ -2458,7 +2458,10 @@ def get_local_driver(
2458
chromium_arg_item = "-" + chromium_arg_item
2459
else:
2460
chromium_arg_item = "--" + chromium_arg_item
2461
- if "set-binary" in chromium_arg_item and not binary_location:
+ if (
2462
+ (IS_LINUX or "set-binary" in chromium_arg_item)
2463
+ and not binary_location
2464
+ ):
2465
br_app = "edge"
2466
binary_loc = detect_b_ver.get_binary_location(br_app)
2467
if os.path.exists(binary_loc):
0 commit comments