我无法使用硒在Mac上启动Chrome浏览器。
我有以下配置:
Mac OS X 10.14.6
Chrome版本:78.0.3904.97
ChromeDriver 78.0.3904.70(从https://chromedriver.chromium.org/downloads下载)
Python 3
我尝试了this博客中提到的步骤来设置chromedriver并使用简单的浏览器启动代码
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('https://www.google.com')
不幸的是,我遇到以下错误:
selenium.common.exceptions.WebDriverException:消息:未知错误: Chrome无法启动:崩溃(未知错误:DevToolsActivePort 文件不存在)(该过程从Chrome位置开始 / Applications / Google Chrome.app/Contents/MacOS/Google Chrome不是 更长的运行时间,因此ChromeDriver认为Chrome崩溃了。)
这些解决方案中没有一个对我有用