Home > Back-end >  org.openqa.selenium.SessionNotCreatedException: Message: Could not start a new session. Response cod
org.openqa.selenium.SessionNotCreatedException: Message: Could not start a new session. Response cod

Time:03-23

A window appears after launch and immediately disappears, I can not understand what's wrong. Google except for the latest version, selenium is also set to the LATEST parameter (nothing changes with a specific version).

Error:

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

Code:

code

Error: Error

CodePudding user response:

Update your chromedriver version, it seems your your browser and browser current driver version aren't same.

https://chromedriver.storage.googleapis.com/index.html?

CodePudding user response:

This error message...

org.openqa.selenium.SessionNotCreatedException: Message:  Could not start a new session. Response code 500. Message: session not created:
.
Driver info: org.openqa.selenium.chrome.ChromeDriver

...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 chrome=99.0
  • Release Notes of ChromeDriver v99.0 clearly mentions the following :

Supports Chrome version 99

  • But your chromedriver version is not getting detected.

Driver info: org.openqa.selenium.chrome.ChromeDriver

  • Your JDK version 1.8.0_281 is also old and ancient.

So most possibly there is a mismatch between jdk version, chromedriver version and the chrome=99.0


Solution

Ensure that:

  • Related