selenium+Python+pycharm环境搭建

工欲善其事必先利其器

1、安装python

2、安装pycharm,新建项目

3、cmd命令pip安装selenium:pip install selenium(建议参照第5点,在pycharm导入selenium)

安装完成后pip list 命令查看已安装列表清单,能看到selenium表示现在成功

4、下载浏览器驱动webdriver,放在python的路径下(webdriver跟浏览器存在映射关系,需跟版本对应上)

火狐驱动:https://github.com/mozilla/geckodriver/releases/

谷歌驱动:http://npm.taobao.org/mirrors/chromedriver

IE驱动:http://selenium-release.storage.googleapis.com/index.html

Edge驱动(win10):https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/

火狐浏览器选择27~32之间的版本

5、在pycharm导入selenium

附教程地址:

Python + selenium自动化环境搭建的完整步骤:https://www.jb51.net/article/140435.htm

Python + Selenium环境搭建(包含部署浏览器驱动):https://www.jianshu.com/p/8388a745a2b2

selenium原理:https://cloud.tencent.com/developer/article/1005264

pycharm中导入selenium:https://blog.csdn.net/liuyuqing2018/article/details/82775528

【Selenium】Geckodriver版本(更新至V0.24.0)与Firefox版本(更新至65)映射关系:https://blog.csdn.net/u013250071/article/details/78803230

通过pip工具安装selenium(初次安装、升级、降级):https://www.cnblogs.com/benpao1314/p/8940713.html

你可能感兴趣的:(selenium+Python+pycharm环境搭建)