无法在windows 7 enterprise中运行selenium chrome无头模式

5m1hhzi4  于 2021-08-25  发布在  Java
关注(0)|答案(1)|浏览(394)

我正在尝试在windows7企业版中运行selenium chrome无头模式。我有:

from selenium.webdriver.chrome.options import Options
options = Options()

options.add_argument('--headless')

options.add_argument('--disable-gpu')

options.add_argument('window-size = 1920,1080')

driver = webdriver.Chrome(executable_path="chromedriver.exe", options=options)

我得到:

chrome.exe is no longer running, so ChromeDriver is assuming that Chrome has crashed

同样的命令集在我的mac book pro上也能完美运行,有人知道为什么吗?

frebpwbc

frebpwbc1#

我认为您应该尝试在以下行使用完整文件路径:

driver = webdriver.Chrome(executable_path="/full file path/chromedriver.exe", options=options)

相关问题