Python3.5+selenium3.11+Windows环境搭建教程

基于Python3的selenium自动化环境搭建

一、selenium安装:

pip install selenium

如果报SSL信任错误,则添加信任安装:

pip --trusted-host pypi.python.org install selenium

默认下载为最新版本selenium

二、浏览器驱动配置(Chrome)

chromedriver版本-支持的Chrome版本 参见:

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

把下载好的驱动包chromedriver.exe解压出来,放在谷歌浏览器安装目录下的Application目录中(我的安装路径是:C:\Program Files\Google\Chrome\Application,具体看你们安装的路径),然后配置环境变量在path中添加chromedriver.exe的路径,(推荐)当然也可以将chromedriver.exe直接copy到如下python解释器的安装目录(安装目录需要添加到环境变量path中)即可:

Python3.5+selenium3.11+Windows环境搭建教程_第1张图片

检查Chrome驱动是否配置成功:

from selenium import webdriver #导入selenium框架包中的webdriver模块

driver = webdriver.Chrome(); #调用webdriver模块中Chrome方法自动打开谷歌浏览器

driver.get(“http://baidu.com”) #打开你要测试的网址

如果成功打开浏览器,跳转到对应网址则浏览器驱动配置成功。

三、浏览器驱动配置(Firefox)

selenium3已经不再默认支持Firefox,因此需要安装Firefox驱动:geckodriver

下载地址:https://github.com/mozilla/geckodriver/releases

下载好后同Chromedriver一样解压复制到Firefox安装路劲或者Python编译器环境(推荐)

Python3.5+selenium3.11+Windows环境搭建教程_第2张图片


感谢:https://blog.csdn.net/tyhj_sf/article/details/74891096

感谢:https://blog.csdn.net/huilan_same/article/details/52615123



你可能感兴趣的:(selenium3)