Firfox、Chrome之python-selenium环境搭建
公共步骤:
一、文件下载
下载地址:
python安装包:https://www.python.org/getit/
PyCharm 安装包:http://www.jetbrains.com/pycharm/download/
二、安装
1、安装python,安装的时候将路径添加到系统环境变量,安装成功后检测:
2、安装pycham,python集成开发环境
3、使用pip install 安装selenium
第一部分:Firfox下python-selenium环境搭建
4、安装火狐浏览器延长版
http://www.firefox.com.cn/download/#more,一般下载延长版,
这个版本selenium基本都能用,最新版本的火狐,selenium会报错。进入官
网,拉到最底部就可以下载。
5、安装火狐浏览器的驱动,下载最新版本即可
下载地址:https://github.com/mozilla/geckodriver/releases
6、在pycham中安装selenium
7、调试成功
#cording=gbk
from selenium import webdriver
import os
firefoxPath=os.getcwd()+'/../'+'webdriver/geckodriver.exe'
driver=webdriver.Firefox(executable_path=firefoxPath)
driver.get('https://baidu.com')
第二部分:Chrome下python-selenium环境搭建
1、下载webdriver
Chromedriver 下载地址: http://npm.taobao.org/mirrors/chromedriver/
下载谷歌浏览器对应版本的webdriver;
下载后将webdriver放在python的安装目录的script目录下,调用的时候就不需要输入路径。
2、调试使用
driver=webdriver.Chrome()
driver.get('https://baidu.com')
即可打开浏览器,输入指定地址(注意:一定要Chrome的版本和webdriver的版本对应)