gpt4 book ai didi

python - 如何在不关闭浏览器的情况下在 Google Colab 上使用 Selenium?

转载 作者:行者123 更新时间:2023-12-04 07:24:15 28 4
gpt4 key购买 nike

我试图在 Google Colab 上使用 Selenium,然后发生错误。错误消息是 “chromedriver' executable needs to be in PATH.”

我用谷歌搜索并找到了解决方案。解决方案如下:

!apt-get update
!apt install chromium-chromedriver
!cp /usr/lib/chromium-browser/chromedriver /usr/bin
!pip install selenium

options = webdriver.ChromeOptions()
options.add_argument('--headless')
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')

driver = webdriver.Chrome('chromedriver',options=options)

当我删除--headless选项时,出现了以下错误。

WebDriverException: Message: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /usr/bin/chromium-browser is no longer running, so ChromeDriver is assuming that Chrome has crashed.)

如果没有 --headless 选项,是否无法在 Google Colab 上使用 Selenium?

最佳答案

不,没有。 Google colab 适用于--headless 模式。

您不能简单地调用真实浏览器的对象。

关于python - 如何在不关闭浏览器的情况下在 Google Colab 上使用 Selenium?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68306341/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com