selenium安装后,需要安装浏览器驱动
Posted ting-light
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium安装后,需要安装浏览器驱动相关的知识,希望对你有一定的参考价值。
google的驱动:chromedriver.exe
驱动版本与chrome版本对应的目录:
http://npm.taobao.org/mirrors/chromedriver/2.32/notes.txt
驱动各版本的下载地址:http://npm.taobao.org/mirrors/chromedriver
from selenium import webdriver
bs=webdriver.Chrome(‘C:Program Files (x86)GoogleChromeApplicationchromedriver‘)
chrome的首字母要大写,chromedriver要放到chrome.exe的目录下,调用时要给出chromedriver的全目录包括文件名‘chromedriver.exe’
Firefox的驱动:从前的版本好像不需要安装驱动,后来需要安装firefoxdriver.exe,
Firefox Driver comes with Selenium/Webdriver itself. No need to launch an external server (like Chromedriver). It is all built-in. |
note: as of selenium 3.0, FirefoxDriver has been replaced by GeckoDriver (which is external) |
以上是关于selenium安装后,需要安装浏览器驱动的主要内容,如果未能解决你的问题,请参考以下文章
安装selenium操作步骤(python中使用selenium)