selenium调用webdriver异常

使用selenium调用webdriver的时候报错。

from selenium import webdriver

browser = webdriver.Chrome()
browser.get("http://www.baidu.com")
print(browser.page_source)
browser.close()

output:

WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home

提示chromedriver需要加入环境变量。

查找chromedriver.exe未果,遂下载。

下载地址:http://npm.taobao.org/mirrors/chromedriver/

贴心提示:  chromedriver需要与chrome版本对应

chrome版本查看方式 :帮助——关于 Google Chrome(G) 

selenium调用webdriver异常

selenium调用webdriver异常

使用方式:

  • 将chrome.exe直接放入chrome目录下。
  • 将chrome.exe所在路径加入环境变量。
上一篇:转 ogg组件介绍


下一篇:jedisCluster 报错: redis.clients.jedis.exceptions.JedisClusterException: No way to dispatch this command to Redis Cluster because keys have different slots.