From e6361e1072481f974d2d3abded0c4aeac98f08c1 Mon Sep 17 00:00:00 2001 From: Reidar Cederqvist Date: Wed, 10 May 2017 09:24:13 +0200 Subject: [PATCH] changed chromedriver_path to only the executable name --- audible-activator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audible-activator.py b/audible-activator.py index 75fa9a2..da29726 100755 --- a/audible-activator.py +++ b/audible-activator.py @@ -51,7 +51,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)