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 ef39342 commit 2a333c5Copy full SHA for 2a333c5
seleniumbase/console_scripts/run.py
@@ -953,7 +953,7 @@ def main():
953
sb_install.main()
954
except Exception as e:
955
invalid_run_cmd = constants.Warnings.INVALID_RUN_COMMAND
956
- if invalid_run_cmd in e.args[0].split("\n")[0]:
+ if invalid_run_cmd in str(e):
957
raise
958
print("\nDriver download failed! Retrying in 3 seconds...")
959
time.sleep(3)
0 commit comments