Amna Latif
Amna Latif

Reputation: 1

How to fix this issue " chrome browser compatibilty issue in selenium webdriver"?

I am just trying to automate a piece of code for automating the contact form, it was working fine a month ago but right now it's showing the below mention error

Exception in thread "main" org.openqa.selenium.SessionNotCreatedException: session not created: Chrome version must be between 70 and 73
  (Driver info: chromedriver=73.0.3683.20 (8e2b610813e167eee3619ac4ce6e42e3ec622017),platform=Windows NT 10.0.17134 x86_64) (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 2.19 seconds

version compatibility issue, my chrome version is 74.** something and selenium is supporting 70-73

Upvotes: 0

Views: 2108

Answers (1)

Issue : Your Chrome Browser Version is 74 and Your framework is having ChromeDriver Binary v73.0.3683.20 which supports Chrome Browser v73

Solution : Update your ChromeDriver Binary Version to v74.0.3729.6

Please have a look at Chrome Browser Release Section : Chrome Browser vs ChromeDriver Binary and follow below information -

Hope following above would resolve your issue.

Upvotes: 2

Related Questions