Display
Display

Reputation: 21

Serenity BDD framework test case fails after Chrome Version update 116

Could not instantiate new WebDriver instance of type class org.openqa.selenium.chrome.ChromeDriver (Could not start a new session. Response code 500. Message: session not created: This version of ChromeDriver only supports Chrome version 114 . Here is my serenity.conf file code.

serenity {
take.screenshots = FOR_FAILURES
}
webdriver {
  driver = chrome
  autodownload = true
}
headless.mode = false
chrome.switches = "--start-maximized;--window-size=1920,1080;--remote-allow-origins=*"

Upvotes: 2

Views: 925

Answers (1)

Bayram Binbir
Bayram Binbir

Reputation: 2237

I had the same issue. Followed the below steps and resolved the issue. ✅✅✅

enter image description here enter image description here

Upvotes: 0

Related Questions