SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 116

114 Views Asked by At

SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 81

io.github.bonigarcia.wdm.WebDriverManagerException: io.github.bonigarcia.wdm.WebDriverManagerException: chromedriver 113.0.5672.63 for WIN64 not found in http://npm.taobao.org/mirrors/chromedriver/

1

There are 1 best solutions below

0
lalit dhend On

I solved the above issue by updating the WebDriverManager in the POM file with the latest one. Which help to auto-update the ChromeDriver version.

<dependency>
        <groupId>io.github.bonigarcia</groupId>
        <artifactId>webdrivermanager</artifactId>
        <version>5.4.1</version>
</dependency>