Home > Back-end >  Chrome Driver only supports Chrome Version 96 Error
Chrome Driver only supports Chrome Version 96 Error

Time:02-27

I have deleted and redownloaded 20 different chrome and chrome drivers, trying to satisfy this error. I have spent 3/4 hours trying to figure this out. If someone could just redirect me a link of what I need to download in order to satisfy this error. My code works, but the drivers don't match well. Although the error is straightforward, I am struggling.

selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 96
Current browser version is 98.0.4758.102 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe

I have attempted to download chrome 96 but, that doesn't seem to solve it either, unless I have downloaded an incorrect one.

CodePudding user response:

Since you are using Chrome 98 version you need 98.0.4758.102 version chromeDriver.
You can download it from here
I see you are using Windows OS, so you should download chromedriver_win32.zip from there.
For more information read here

  • Related