I am using python 3 on windows 7, selenium, chromedriver version 84 (latest) to automate my chrome browser.
I am using this script:
This error message...
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 84
...implies that the ChromeDriver was unable to initiate/spawn a new Browsing Context i.e. Chrome Browser session.
Your main issue is the incompatibility between the version of the binaries you are using as follows:
Supports Chrome version 84
So there is a clear mismatch between ChromeDriver v84 and the Chrome Browser v83
There are two (2) solutions to this issue.
Additionally also ensure that:
@Test as non-root user.driver.quit() within tearDown(){} method to close & destroy the WebDriver and Web Client instances gracefully.