I try to start Chromedriver with Selenium
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("http://www.google.com/")
print(driver.title)
and error msg below:
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: exited abnormally
(Driver info: chromedriver=2.33.506092,platform=Linux 3.10.0-693.5.2.el7.x86_64 x86_64)
I am using these:
[root@jdu4e00u53f7 workspace]# ll /usr/local/bin/chromedriver
lrwxrwxrwx 1 root root 17 11月 14 00:31 /usr/local/bin/chromedriver -> /opt/chromedriver
- CentOS 7.3
- Python(3.6.2)
- selenium (3.7.0)
- Google Chrome (62.0.3202.89)
- chromedriver(2.9)/ I changed to chromedriver=2.33.506092
- Xvfb
ps, I also tried
driver = webdriver.Chrome('/usr/local/bin/chromedriver')
,it not work...
ref :Selenium fails to start Chromedriver
- On my server start Xvfb in the background:
Xvfb :0 -ac -screen 0 1024x768x24 &
and also not work
ref:unknown error: Chrome failed to start: exited abnormally (Driver info: chromedriver=2.9