启动[Selenium] [Python]后,Chrome崩溃了。

3
我写了一个小脚本来加载我的默认Chrome配置文件并使用Selenium打开一个网站。然而,在Chrome成功启动后,代码会暂停一段时间,然后崩溃。
我的脚本如下:
    options = webdriver.ChromeOptions() 
    options.add_argument("--user-data-dir=C:\\Users\\hbur3\\AppData\\Local\\Google\\Chrome\\User Data") 
    options.add_argument("--start-maximized");
    wd = webdriver.Chrome(chrome_options=options)
    wd.get("https://google.com.au/")

Python错误:
  selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: crashed
  (Driver info: chromedriver=2.27.440174 (e97a722caafc2d3a8b807ee115bfb307f7d2cfd9),platform=Windows NT 10.0.14393 x86_64)

Chromedriver日志:

[2.638][INFO]: Launching chrome: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-background-networking --disable-client-side-phishing-detection --disable-default-apps --disable-hang-monitor --disable-infobars --disable-popup-blocking --disable-prompt-on-repost --disable-sync --disable-web-resources --enable-logging --ignore-certificate-errors --load-component-extension="C:\Users\hbur3\AppData\Local\Temp\scoped_dir21208_8173\internal" --log-level=0 --metrics-recording-only --no-first-run --password-store=basic --remote-debugging-port=12638 --safebrowsing-disable-auto-update --start-maximized --test-type=webdriver --use-mock-keychain --user-data-dir="C:\Users\hbur3\AppData\Local\Google\Chrome\User Data"
    [2.641][DEBUG]: DevTools request: http://localhost:12638/json/version
    [4.644][DEBUG]: DevTools request failed
    [4.695][DEBUG]: DevTools request: http://localhost:12638/json/version
    [4.896][DEBUG]: DevTools request failed
    [4.946][DEBUG]: DevTools request: http://localhost:12638/json/version
    [6.699][DEBUG]: DevTools request failed
    [6.750][DEBUG]: DevTools request: http://localhost:12638/json/version
    [6.950][DEBUG]: DevTools request failed
        etc...

我尝试了一系列的解决方案,包括:
  • 重新安装Chromedriver
  • 创建新的Chrome用户档案
  • 将默认档案复制到其他位置
  • 只在没有其他Chrome窗口打开时运行

我不想删除我的档案并重新安装Chrome,但这可能是我唯一的解决方案。

1个回答

1

我认为你需要去做你害怕的事情... 可以查看这个答案。你可以导入和导出你的配置文件以节省时间。

另外你可以尝试启动一个RemoteWebDriver而不是ChromeDriver。首先运行chromedriver.exe,然后连接到它:

from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities

driver = webdriver.Remote(
command_executor='http://localhost:9515/',
desired_capabilities=DesiredCapabilities.CHROME)

如果问题仍然存在,请查找一个开放的问题,或者可能会打开一个新的问题。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接