Selenium打开浏览器但返回错误

时间:2018-01-02 16:01:47

标签: google-chrome selenium-webdriver python-3.5 ubuntu-17.04

运行此代码

from selenium import webdriver
driver = webdriver.Chrome("/usr/bin/google-chrome")
打开带有新标签的浏览器

后,

退出并出现此错误

File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.5/dist-packages/selenium/webdriver/chrome/webdriver.py", line 68, in __init__
self.service.start()
File "/usr/local/lib/python3.5/dist-packages/selenium/webdriver/common/service.py", line 96, in start
self.assert_process_still_running()
File "/usr/local/lib/python3.5/dist-packages/selenium/webdriver/common/service.py", line 109, in assert_process_still_running
% (self.path, return_code)
selenium.common.exceptions.WebDriverException: Message: Service /usr/bin/google-chrome unexpectedly exited. Status code was: 0

之后我无法使用驱动变量,因为它返回一个NameError。

我用pip安装了selenium,我使用的是python 3.5.3。

编辑1:

我忘了提到我正在使用Ubuntu 17.04 zesty

1 个答案:

答案 0 :(得分:0)

当您使用 Selenium 3.x.x 以及最近的 Google Chrome 浏览器时,您必须下载 chromedriver.exe < / strong>从this location将其置于您的系统中,并通过参数 chromedriver 提及 executable_path 二进制文件的绝对位置如下:

from selenium import webdriver

driver = webdriver.Chrome(executable_path='/usr/bin/chromedriver')
driver.get('https://www.google.co.in')
print("Page Title is : %s" %driver.title)
driver.quit()