org.openqa.selenium.SessionNotCreatedException: session not created exception

前端 未结 9 1273
自闭症患者
自闭症患者 2020-12-08 20:25

I\'m trying to run some Selenium tests using the ChromeDriver, and I started getting this error:

Starting ChromeDriver 2.23.409699 (49b0fa931cda1caad0ae15b7d         


        
相关标签:
9条回答
  • 2020-12-08 20:50

    This issue started showing up after chrome Version 54.0.x updates. Remove the older chromedriver from your path and update your chromedriver to 2.24. This should resolve your issue.

    0 讨论(0)
  • 2020-12-08 20:53

    Update your chromedriver with lastest version. And please clarify your question.

    https://chromedriver.storage.googleapis.com/index.html?path=2.24/

    0 讨论(0)
  • 2020-12-08 20:54

    If your chrome browser is recently updated to V54.0.x, then you might get this error. The solution for this problem is simply to update your chrome driver.

    Choose chrome driver from the below link that will suit your system architecture.

    Latest Chromedriver v2.25

    0 讨论(0)
  • 2020-12-08 21:00

    I had the same issue . Updating the chrome driver solved my problem.

    0 讨论(0)
  • 2020-12-08 21:03

    You might be using the lower version of the chrome driver.

    org.openqa.selenium.SessionNotCreatedException: session not created exception

    I had the similar issue and was getting the exception as above. So always check the latest version of driver from here: https://sites.google.com/a/chromium.org/chromedriver/downloads

    0 讨论(0)
  • 2020-12-08 21:03

    In my case the problem was that I kept a Selenium script running for too much time than I run out of disk free space.

    So, I just clean out the Temp folder and created a routine to keep cleaning selenium folders, and problem solved.

    0 讨论(0)
提交回复
热议问题