mac环境安装selenium+python环境

1.下载pip 【python的安装包管理工具】

https://pypi.org/project/pip/#files

2.下载Pycharm【Python开发环境】

http://www.jetbrains.com/pycharm/

3.下载Firefox安装包,下载完成后双击安装。(链接就不提供了,自己找)

1、 安装pip,将下载好的pip文件解压(我默认解压在下载文件夹内),打开终端,cd至该目录,

执行sudo python setup.py install

2、 执行sudo easy_install pip

3、 联网执行python -m pip install selenium

4、 安装Pycharm很简单,双击安装即可。安装完成后,设置按找习惯设置即可。

selenium3.x开始,webdriver/firefox/webdriver.py的init中,executable_path=”geckodriver”; 
而2.x是executable_path=”wires”; 
所以需要自己配置geckodriver; 
下载地址:https://github.com/mozilla/geckodriver/releases 
下载后(根据系统版本选择):

解压取出geckodriver.exe(以64x为例);
将geckodriver.exe放到Firefox的安装目录下,如:(D:\火狐\Mozilla Firefox);
将火狐安装目录(D:\火狐\Mozilla Firefox)添加到环境变量path中
(最终要的一步)重启pycharm,不要像我一样傻逼的装了好几次火狐就不重启一次pycharm

安装了python3,使用pip安装了selenium,但是在使用时,报了“selenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable needs to be in PATH.”

网上查了一下解决办法,此处做下记录:

原因:使用pip安装selenium,默认安装的是最新版本的selenium,使用pip list查了一下我的selenium版本,是3.4.2的,firefox版本,是43.0.1的,selenium 3.x开始,webdriver/firefox/webdriver.py的__init__中,executable_path="geckodriver";而2.x是executable_path="wires"

方法一:可以卸载现有的selenium,安装指定的2.X版本的selenium,这个办法没有试,因为就是本着selenium3来的,不打算降版本;

方法二:下载geckodriver.exe

  1. 下载地址:https://github.com/mozilla/geckodriver/releases,根据自己的电脑,下载的win64位的;
  2. 在firefox的安装目录下,解压geckodriver,然后将该路径添加到path环境变量下,不报这个错了;
  3. 但是,报了一个新的错“selenium.common.exceptions.WebDriverException: Message: Unable to find a matching set of capabilities”;
  4. 继续网上查,原因是,我下载的geckodriver是V0.16.1版本的,这个版本和selenium3.4.2不兼容,需要使用deckdriverV0.15的版本;
  5. 重新下载了deckodriverV0.15的版本,ok了,不报这个错了,但是,又报了一个新的错“selenium.common.exceptions.WebDriverException: Message: Unsupported Marionette protocol version 2, required 3;
  6. 继续往上查原因,说是firefox版本太低了,需要升级到最新版,ok,更新firefox,问题解决。

测试是否安装成功:

from selenium import webdriver
import time
dr=webdriver.Firefox()
time.sleep(5)
print('Browser will be closed')
dr.quit()
print('Browers is close')

 

你可能感兴趣的:(selenium学习过程)