python:使用selenium webdriver注意

1、根据需要驱动的浏览器和系统版本下载对应得webdriver

驱动下载地址,及使用:

Firefox:https://github.com/mozilla/geckodriver/releases

browser = webdriver.Firefox(executable_path=r'驱动路径\geckodriver.exe')

Edge:https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/

browser = webdriver.Edge(executable_path=r'驱动路径\msedgedriver.exe')

chrome:http://chromedriver.storage.googleapis.com/index.html

browser = webdriver.Chrome(executable_path=r'驱动路径\chromedriver.exe')

2、不指定驱动路径,则将驱动放置在该编程代码的路径下,则可直接使用,如Firefox

browser = webdriver.Firefox()

 

 

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...