selenium无法在Chrome

时间:2018-02-18 21:07:57

标签: python-3.x selenium

我对selenium很安静,我的selenium只会打开Chrome浏览器而不是URL。我的代码非常简单。

from selenium import webdriver

driver = webdriver.Chrome('my-path-to-chrome')
driver.get("http://www.facebook.com")`

我看了控制台,发现发现了4个错误:

SW registered
chrome-search://thumb/https://adwords.google.com/mcm/Mcm?authuser=0&__u=4760590279&__c=3865711759#c&app=mcm Failed to load resource: net::ERR_FAILED
screener.ashx Failed to load resource: net::ERR_FAILED
thumb/ Failed to load resource: net::ERR_FAILED
thumb/ Failed to load resource: net::ERR_FAILED

Chrome版本:版本64.0.3282.167(官方版本)(64位) Python:3.6 硒:3.9

谢谢!

编辑 - 我解决了它,因为你看到的是这些步骤。

1)首先下载Chrome驱动程序,只需google它 2)将驱动程序路径从chrome更改为chrome驱动程序 去吧真好。

1 个答案:

答案 0 :(得分:0)

我也处理同样的问题,并使用以下步骤解决了问题:

  1. 下载最新的chromedriver并将其保存在项目目录中。
  2. 在驱动程序初始化期间设置chromedriver路径。