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 5cff80d commit 00bdc9eCopy full SHA for 00bdc9e
seleniumbase/core/browser_launcher.py
@@ -545,6 +545,8 @@ def get_local_driver(
545
else:
546
return webdriver.Edge()
547
elif browser_name == constants.Browser.SAFARI:
548
+ if "".join(sys.argv) == "-c": # Skip if multithreaded
549
+ raise Exception("Can't run Safari tests in multi-threaded mode!")
550
return webdriver.Safari()
551
elif browser_name == constants.Browser.OPERA:
552
if LOCAL_OPERADRIVER and os.path.exists(LOCAL_OPERADRIVER):
0 commit comments