Quantcast
Channel: unknown error: Chrome failed to start: exited abnormally (Driver info: chromedriver=2.9 - Stack Overflow
Browsing all 18 articles
Browse latest View live

Answer by GFB for unknown error: Chrome failed to start: exited abnormally...

I had same error if I run python script inside docker container and forgot"--headless" option.

View Article


Answer by Lav Patel for unknown error: Chrome failed to start: exited...

In my Ubuntu server, following solve the issueXvfb :11 -ac -screen 0 1024x768x24 &export DISPLAY=:11python selenium_test.pykillall Xvfb dont use the last line if you have multiple Xvfb process are...

View Article

Answer by Siddy Hacks for unknown error: Chrome failed to start: exited...

In Linux adding these lines to my code helped me.from selenium import webdriverfrom selenium.webdriver.chrome.options import Optionschrome_options =...

View Article

Answer by Alex Langer for unknown error: Chrome failed to start: exited...

Check that you use ChromeDriver version that corresponds to your Chrome versionIn case you are on Linux without graphical interface "headless" mode must be usedExample of WebDriverSettings.java...

View Article

Answer by rajesh-nitc for unknown error: Chrome failed to start: exited...

You don't need XvfbIt is failing to start due to a mismatch between the chrome version and the chromedriver version. Downloading and installing the same versions or latest versions would solve the issue.

View Article


Answer by 袁文涛 for unknown error: Chrome failed to start: exited abnormally...

I increase max memory to start node-chrome with -Xmx3g, and it's work for me

View Article

Answer by Robert Townley for unknown error: Chrome failed to start: exited...

Not sure if this is stopping everyone else, but I resolved this by upgrading chromedriver and then ensuring that it was in a place that my user could read from (it seems like a lot of people...

View Article

Answer by Wilson for unknown error: Chrome failed to start: exited abnormally...

I've been fighting with this issue for a long time, and just y'day I figure out how to make it gone and today I can run a 50 threads process calling selenium without seen this issue anymore and also...

View Article


Answer by Andrew Johnston for unknown error: Chrome failed to start: exited...

I am running a similar setup: Selenium 3.40, Chrome 61, chromedriver 2.33 running with xvfb on ubuntu 16.04.I was getting the same Chrome error intermittently. It seems that sometimes, the chromedriver...

View Article


Answer by changtung for unknown error: Chrome failed to start: exited...

I had simillar issue with maven tests on x86 linux which i was using in terminal. I was logging in to linux by ssh. I started my java selenium tests by mvn...

View Article

Answer by Mcmil for unknown error: Chrome failed to start: exited abnormally...

The Mike R's solution works for me. This is the full set of commands:Xvfb :99 -ac -screen 0 1280x1024x24 &export DISPLAY=:99nice -n 10 x11vnc 2>&1 &Later you can run...

View Article

Answer by customcommander for unknown error: Chrome failed to start: exited...

Exporting the DISPLAY variable is definitely the solution but depending on your setup you may have to do this in a slightly different way.In my case, I have two different processes: the first one...

View Article

Answer by Mike R for unknown error: Chrome failed to start: exited abnormally...

We had the same issue while trying to launch Selenium tests from Jenkins. I had selected the 'Start Xvfb before the build, and shut it down after' box and passed in the necessary screen options, but I...

View Article


Answer by Harkirat Saluja for unknown error: Chrome failed to start: exited...

I was trying to run selenium on Jenkins with Mocha framework using wdio. So following are the steps to solve this issue:-Install google chromesudo apt-get update sudo apt-get install...

View Article

Answer by Peter Kahn for unknown error: Chrome failed to start: exited...

Passing no-sandbox to exec seems important for jenkins on windows in foreground or as service. Here's my solutionchromedriver fails on windows jenkins slave running in foreground

View Article


Answer by redochka for unknown error: Chrome failed to start: exited...

I finally managed to get Selenium tests starting the Chrome Driver on my laptop (server).The important bit is to use Xvfb. Don't ask me why but once you accept this fact follow these steps (more...

View Article

Answer by Anon for unknown error: Chrome failed to start: exited abnormally...

Are you passing the DISPLAY parameter to your Jenkins job? I assume you are trying to execute the tests in headless mode, too. So setup some x service (i.e. Xvfb) and pass the DISPLAY number to your...

View Article


unknown error: Chrome failed to start: exited abnormally (Driver info:...

I am trying to run Selenium tests on Debian 7 but without success.The error is:unknown error: Chrome failed to start: exited abnormally (Driver info: chromedriver=2.9.248316,platform=Linux...

View Article
Browsing all 18 articles
Browse latest View live