I imported webdriver from selenium and os. I want to be able to run this piece of code successfully:
driver = webdriver.Chrome(executable_path= os.path.abspath('') + '/chromedriver')
The error I'm getting:
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 81
I'm using python 2.7 on a MAC OSX. I have version 81.0.4044.138 of the chromedriver installed from https://sites.google.com/a/chromium.org/chromedriver/downloads in the same workspace directory, and it is named 'chromedriver', but it's like my webdriver doesn't recognize it. I would appreciate any suggestions!