Home > database >  Chrome Updated To Version 106 - Selenium No longer works
Chrome Updated To Version 106 - Selenium No longer works

Time:10-06

My code was working 2 days ago and then chrome updated. I have no idea how to address the below issue, though the specific problem is very clear.

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

Can you help? Thanks!

CodePudding user response:

I had the same issue today, and so I tried to fix it with WebDriverManager. It's worked properly now.

CodePudding user response:

Facing same issue in rubymine. Webdriver didn't help Selenium::WebDriver::Error::SessionNotCreatedError: session not created: This version of ChromeDriver only supports Chrome version 104 Current browser version is 106.0.5249.91 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe

Updated chromedriver successfuly Starting ChromeDriver 106.0.5249.61 (511755355844955cd3e264779baf0dd38212a4d0-refs/branch-heads/5249@{#569}) on port 9515 Only local connections are allowed.

  • Related