使用Selenium和Python运行Headless Chrome时出错

时间:2018-09-18 16:45:20

标签: python python-3.x selenium selenium-chromedriver google-chrome-headless

我一直试图在Python 3.6中运行一个非常基本的脚本,该脚本使用Selenium和chromedriver-2.42。

这是脚本:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
import os

ch = os.getcwd() + '\\chromedriver'
options = Options()
options.set_headless(headless=True)
driver = webdriver.Chrome(options=options, executable_path=ch)
driver.get("http://google.com/")
driver.get_screenshot_as_file('capture.png')
driver.quit()

运行它时,出现以下错误:

Error

我正在使用Windows 7 x64。

如果有人可以指导我解决此错误,这将是一个很大的帮助。 谢谢!

0 个答案:

没有答案