Webdriver
一、不同浏览器对应的驱动
(一) Firefox → geckodriver
- Firefox48以上版本:selenium 3.x + Firefox驱动——geckodriver
- Firefox48以下版本:selenium 2.x内置驱动
(二) Chrome → chromedriver
- selenium 2.x/ 3.x + Chrome驱动——chromedriver
(三) IE → InternetExplorerDriver
- IE9以上版本:selenium 3.x + IE驱动——InternetExplorerDriver
- IE9以下版本:selenium 2.x + IE驱动——InternetExplorerDriver
二、驱动安装及配置
将驱动文件放到Python的安装目录下
webdriver配置
原文地址:http://www.cnblogs.com/sleeping-cat/p/7808192.html