Reputation: 3
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
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