0

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

Syed Mehtab Hassan
  • 1,297
  • 1
  • 9
  • 23
  • Possible duplicate of [Error: System.InvalidOperationException: session not created: Chrome version must be between 70 and 73 using ChromeDriver and Chrome through Selenium](https://stackoverflow.com/questions/55283591/error-system-invalidoperationexception-session-not-created-chrome-version-mus) – Mate Mrše May 17 '19 at 06:39

1 Answers1

2

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.

TheSociety
  • 1,936
  • 2
  • 8
  • 20