selenium 浏览器自动化测试框架

selenium依赖库地址:
https://pypi.org/project/selenium/
该链接中写的selenium起步教程已经很简单明了了,大家可以直接去跟着它的指南操作。

下方是一些常用浏览器的selenium driver下载地址:

| Chrome: | https://chromedriver.storage.googleapis.com/index.html |
| Edge: | https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/ |
| Firefox: | https://github.com/mozilla/geckodriver/releases |
| Safari: | https://webkit.org/blog/6900/webdriver-support-in-safari-10/ |

国内网站阿里下载地址
https://npm.taobao.org/mirrors/selenium/
firefox webdriver:
https://npm.taobao.org/mirrors/geckodriver/
chrome webdriver:
https://npm.taobao.org/mirrors/chromedriver/
opera driver:
https://npm.taobao.org/mirrors/operadriver/

chrome driver的wiki文档:https://github.com/SeleniumHQ/selenium/wiki/ChromeDriver
需要将下载的chrome driver执行文件加入到环境变量path中或者在新建driver的时候指定exe文件路径方可使用

image.png

你可能感兴趣的:(selenium 浏览器自动化测试框架)