Raghav
Raghav

Reputation: 3

Chrome driver 113 not support existing chrome browser version 120.0.6099.130

When I ran jmeter - selenium web driver script while launching the browser getting below error

Org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code 500. Message: session not created

This version of ChromeDriver only supports Chrome version 113

Current browser version is 120.0.6099.130 with binary path C:\program Files(x86)\Google\Chrome\Application\Chrome.exe

Please help me to over come thei issue

Upvotes: 0

Views: 175

Answers (1)

Dmitri T
Dmitri T

Reputation: 168157

You need to go to https://googlechromelabs.github.io/chrome-for-testing/ page, locate the ChromeDriver version which exactly matches your Chrome browser version and replace the ChromeDriver binary with this new one.

Going forward you can use JSR223 Sampler with WebDriverManager somewhere in setUp Thread Group to get the matching version of ChromeDriver automatically.

Upvotes: 0

Related Questions