如何解决'chromedriver' executable needs to be in PATH.的问题

使用selenium 用chrome打开某个网站时,如下代码运行会出现以下错误:
from selenium import webdriver
browser = webdriver.Chrome()
browser.get("http://www.baidu.com")

如何解决'chromedriver' executable needs to be in PATH.的问题_第1张图片

即'chromedriver' executable needs to be in PATH.

看了很多其他文章,说:根据你自己的Chrome版本,下载相应的 chromedriver,再在环境变量中加入该路径。

但是我试了很多次都不行,最后通过该一行代码即可行:

browser = webdriver.Chrome(executable_path = 'C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe')
executable_path指定了chromedriver所在的路径,程序运行时就会到该路径下启动chrome浏览器

你可能感兴趣的:(爬虫,Python)