moved chromedrivers and fixed usages

This commit is contained in:
Rushil Umaretiya 2020-06-16 14:16:03 -04:00
parent 5120b5b9b3
commit cbd3ddb4e7
4 changed files with 2 additions and 2 deletions

View File

@ -315,9 +315,9 @@ def authenticate():
#Macos: chromdriver-mac
#Windows: chromdriver.exe
if('CLI' in os.getcwd()):
path = os.path.join(os.getcwd(), '../','chromedriver-mac')
path = os.path.join(os.getcwd(), '../','chromedriver/chromedriver-mac')
else:
path = os.path.join(os.getcwd(), 'chromedriver-mac')
path = os.path.join(os.getcwd(), 'chromedriver/chromedriver-mac')
browser = webdriver.Chrome(path)