Chromedriver update issue. Maven project.

Answered

This is my error. 

"Step failed
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 114
Current browser version is 119.0.6045.123 with binary path /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
Build info: version: '4.2.1', revision: 'ac4d0fdd4a'"

How to update Chromedriver?

0
1 comment

Try downloading a compatible driver from here.

You can also try using webdrivermanager:

@BeforeAll
static void setup() {
	WebDriverManager.chromedriver().setup();
}
0

Please sign in to leave a comment.