From 39d5d96b6a1447528a92ca3f8b932691eac4c1ef Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Tue, 23 Jul 2024 22:55:45 +0100 Subject: [PATCH] sigh. typo --- browserdriver/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browserdriver/__init__.py b/browserdriver/__init__.py index 27b7d56..1a9bb4c 100755 --- a/browserdriver/__init__.py +++ b/browserdriver/__init__.py @@ -26,7 +26,7 @@ class BrowserDriver: def chrome(headless=True): chrome_path = os.path.join(CWD, 'chrome-linux64', 'chrome') - driver_path = os.path.join(CWD, 'driver', 'chromedriver') + driver_path = os.path.join(CWD, 'drivers', 'chromedriver') options = ChromeOptions() options.binary_location = chrome_path if headless: