Home > Blockchain >  Selenium: Could not start a new session. Response code 500. Message: session not created: This versi
Selenium: Could not start a new session. Response code 500. Message: session not created: This versi

Time:08-14

When I run the program some error message is shown and the program can not be executed and the message:

org.openqa.selenium.sessionNotCreatedExeception:could not start a new session. Response code 500. Message: session not created: This version of ChomeDriver only supports Chrome version 102.

Chromedriver is not hitting the URL.

CodePudding user response:

Your chrome version does not match the version of your chrome webdriver. You have to download the right version of the webdriver. If you are not sure which version of Chrome are you running, you can find it in "about" section.

CodePudding user response:

This error message...

org.openqa.selenium.sessionNotCreatedExeception:could not start a new session. Response code 500. Message: session not created: This version of ChomeDriver only supports Chrome version 102

...implies that the ChromeDriver was unable to initiate/spawn a new Browsing Context i.e. session.

Your main issue is the incompatibility between the version of the binaries you are using as follows:

  • You are using chromedriver=102.0
  • Release Notes of chromedriver=102.0 clearly mentions the following :

Supports Chrome version 102

  • Presumably you are using the latest chrome=104.0

So there is a clear mismatch between chromedriver=102.0 and the chrome=104.0


Solution

Ensure that:

Also ensure,

  • Related