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 6ca0360 commit 970e935Copy full SHA for 970e935
seleniumbase/core/browser_launcher.py
@@ -21,7 +21,7 @@
21
urllib3.disable_warnings()
22
DRIVER_DIR = os.path.dirname(os.path.realpath(drivers.__file__))
23
if DRIVER_DIR not in os.environ["PATH"]:
24
- os.environ["PATH"] += os.pathsep + DRIVER_DIR
+ os.environ["PATH"] = DRIVER_DIR + os.pathsep + os.environ["PATH"]
25
EXTENSIONS_DIR = os.path.dirname(os.path.realpath(extensions.__file__))
26
DISABLE_CSP_ZIP_PATH = "%s/%s" % (EXTENSIONS_DIR, "disable_csp.zip")
27
PROXY_ZIP_PATH = proxy_helper.PROXY_ZIP_PATH
0 commit comments