Webdriver doesn't start on Chrome 54
See original GitHub issueWebdriver doesn’t run, instead throwing an error:
SessionNotCreatedError: session not created exception
If you update chromedriver
to 2.24.1
this issue goes away but I can’t get chromedriver to open a window. 😕
Issue Analytics
- State:
- Created 7 years ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
Chrome driver 2.24 is not working with Chrome browser ...
My chrome browser version got updated automatically to 54.0.2840.71 (64-bit).And I am unable to run my testcases in Chrome.
Read more >Chrome doesn't start or crashes immediately
A common cause for Chrome to crash during startup is running Chrome as root user (administrator) on Linux. While it is possible to...
Read more >Unable to start the chrome browser : please help me ...
You have set webdriver.chrome.driver incorrectly. For Chrome you will have the Selenium libraries, ChromeDriver.exe and the actual browser (Chrome.exe). You ...
Read more >How to launch chrome from a Custom Port using selenium?
You should use ChromeDriverService for starting chrome in a different port: import org.openqa.selenium.chrome.
Read more >Chrome Browser and ChromeDriver version mismatch issue
Sometimes we need to port our selenium script to a different machine but that time we get the Chromedriver version mismatch issue. then...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
can you try to set
export LANG="en_US.UTF-8"
prior to running the tests? Seems to work for me. https://bugs.chromium.org/p/chromedriver/issues/detail?id=1552#c35 Maybe that explains why ran within IntelliJ.Works fine for me now. Thanks mate.