安装程序
python-2.7.2.msi,python安装程序
setuptools-0.6c11.win32-py2.7.exe,安装selenium必备软件
pip-1.0.2.tar.gz
selenium-2.18.1.tar.gz(pip命令下载安装),selenium安装程序
selenium-ide-1.6.0.xpi,firefoxWebDriver
selenium-server-standalone-2.18.0.jar,ieWebDriver
chromedriver.exe(chromedriver_win_18.0.1022.0.zip ),chromeWebDriver
ufida.zip
安装python
双击安装python-2.7.2.msi即可。建议安装在默认路径:C:\Python27
添加环境变量Path:C:\Python27
安装验证:cmd命令中,输入python,进入python command line模式
安装setuptools
双击安装setuptools-0.6c11.win32-py2.7.exe即可。
安装路径C:\Python27\Lib\site-packages
必须安装setuptools,是因为pip和selenium的安装文件setup.py中使用。
安装 pip
解压pip-1.0.2.tar.gz,将解压文件放到C:\下,在DOS环境进入C:\pip-1.0.2,执行命令:python setup.py install。请注意安装路径。
默认在:C:\Python27\Scripts。
安装 selenium
进入pip.exe所在路径,运行命令行:pip install -U selenium。(需要网络,出现下列错误.忽略)
D:\Python27\Scripts>pip install -U selenium
Downloading/unpacking selenium
Downloading selenium-2.24.0.tar.gz (1.9Mb): 1.9Mb downloaded
Running setup.py egg_info for package selenium
D:\Python27\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'src_root'
warnings.warn(msg)
warning: no files found matching 'docs\api\py\index.rst'
Installing collected packages: selenium
Found existing installation: selenium 2.24.0
Uninstalling selenium:
Successfully uninstalled selenium
Running setup.py install for selenium
D:\Python27\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'src_root'
warnings.warn(msg)
warning: no files found matching 'docs\api\py\index.rst'
Successfully installed selenium
Cleaning up...
安装webdriver
安装firefox webdirver
将selenium-ide-1.6.0.xpi拖进firefox浏览器,即开始安装
Firefox浏览器选装firebug、FirePath插件
安装chrome webdriver
解压chromedriver.exe到Python的安装目录下,如C:\Python27。
添加C:\Users\Administrator\AppData\Local\Google\Chrome\Application\(chrome安装路径,这里是win7下的安装路径)到环境变量path
安装 ie webdriver
复制IEDriverServer.exe到C:\Python27
设置IE浏览器,Internet选线安全,把各模式的“启动保护模式”设置成一样(或者全部启动,或者全部不启动)。
自定义模块
http://www.51autotest.com/forum.php?mod=viewthread&tid=2211&reltid=2224&pre_thread_id=1833&pre_pos=1&ext=
分享到:
相关推荐
Python+Selenium+Unittest环境搭建详解 Python+Selenium+Unittest环境搭建是自动化测试中的一种重要组件,本文将详细介绍如何搭建Python+Selenium+Unittest环境,并解决在搭建过程中可能遇到的问题。 一、安装...
selenium+python+pycharm环境搭建文档selenium+python+pycharm环境搭建文档selenium+python+pycharm环境搭建文档
文档讲述selenium + python自动化测试环境搭建,可做参考并且请大家多提出宝贵意见!
总之,搭建Selenium+Python环境涉及安装Python、Setuptools、pip以及Selenium库。在64位系统中,特别是Windows环境下,要注意Python和ez_setup的安装。完成这些步骤后,你可以开始编写自动化测试脚本,利用Selenium...
1. 安装Python环境。首先需要在系统上安装Python,确保系统中有一个可用的Python环境。 2. 安装Selenium库。安装Python后,需要通过pip(Python包安装工具)来安装Selenium库。可以通过命令“pip install selenium...
- **验证配置**:通过在命令提示符窗口输入`python --version`来验证Python环境变量是否配置正确。 #### 三、安装setuptools与pip - **了解setuptools**:setuptools是Python的一个扩展工具,主要用于简化Python包...
1. **基础概念**:介绍Selenium的基本组件和工作原理,以及Python环境的搭建。 2. **编写测试脚本**:详细阐述如何用Python编写Selenium测试脚本,包括元素定位、事件触发、异常处理等。 3. **测试框架**:讨论如何...
根据公司产品的实际情况写的selenium + Python 环境下的web登陆界面测试脚本,新手经验不足,请多指教。注:请先配置好selenium 和Python环境。
本指南将详细介绍如何在你的计算机上配置Selenium和Python环境,以便开始进行网页自动化测试。 **1. 安装Python** 首先,你需要安装Python。访问Python官方网站(https://www.python.org/downloads/),根据你的...
- **安装pip**(如果Python环境中未包含pip): 在命令行中运行以下命令: ```bash python -m ensurepip --upgrade ``` - **安装Selenium**: 使用pip安装Selenium: ```bash pip install selenium ``` 若...
Selenium+Python环境搭建是一个详细过程,涵盖了从Python安装、Pip安装、Pycharm安装到环境配置的每一步操作。此过程主要面向软件测试领域,尤其是自动化测试领域。 首先,Python的安装过程需要从Python官网下载...
自动化测试(selenium + python) 自动化测试简介 自动化测试类型 自动化测试优势、劣势 自动化测试适用范围 自动化测试工具 Selenium简介 Selenium + python环境搭建
本压缩包整合了搭建一套selenium+python环境所需的所有东西,有了这个包,大家也不需要东奔西走下载东西喽。包含:Firefox Setup 57.0.4 .exe、geckodriver.exe、pip-9.0.1.tar.gz、python-3.6.4.exe、selenium-...
在配置Selenium+Python环境之前,我们需要完成一系列必要的安装工作,包括Python、Selenium库以及Webdriver等。 #### 安装 Python Python是Selenium自动化测试的核心语言之一。为了顺利进行后续操作,请确保您的...
首先,建立Selenium+Python环境需要以下步骤: 1. **安装JDK**:由于Selenium的某些部分可能依赖Java,因此需要确保JDK已经正确安装。不过,文档中提到由于之前的配置,这部分不再赘述。 2. **安装Python2.7**:...
基于selenium+python实现的51job招聘数据可视化分析系统源码+项目说明.tar基于selenium+python实现的51job招聘数据可视化分析系统源码+项目说明.tar基于selenium+python实现的51job招聘数据可视化分析系统源码+项目...