From daeb41cda075ab7dbca535ca2ef5e12c15a04e2c Mon Sep 17 00:00:00 2001 From: Tim McIver Date: Thu, 14 Dec 2017 22:57:31 -0500 Subject: [PATCH] Fix for "Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home" error on non-Windows OS's. --- audible-activator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audible-activator.py b/audible-activator.py index efde928..350b5e3 100755 --- a/audible-activator.py +++ b/audible-activator.py @@ -57,7 +57,7 @@ def fetch_activation_bytes(username, password, options): if sys.platform == 'win32': chromedriver_path = "chromedriver.exe" else: - chromedriver_path = "./chromedriver" + chromedriver_path = "chromedriver" driver = webdriver.Chrome(chrome_options=opts, executable_path=chromedriver_path)