ImageVerifierCode 换一换
格式:DOC , 页数:5 ,大小:20.95KB ,
资源ID:3179937      下载积分:20 文钱
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,省得不是一点点
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.wenke99.com/d-3179937.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: QQ登录   微博登录 

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(selenium+python配置.doc)为本站会员(11****ws)主动上传,文客久久仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知文客久久(发送邮件至hr@wenke99.com或直接QQ联系客服),我们立即给予删除!

selenium+python配置.doc

1、Selenium+Python 配置2目录Selenium+Python 配置 .1环境部署 .3安装程序 .3安装 python.3安装 selenium .3安装 setuptools .3安装 pip .3安装 selenium.3安装 webdriver.4安装 firefox webdirver .4安装 chrome webdriver.4安装 ie webdriver .4自定义模块 .4Demo .53环境部署安装程序python-2.7.2.msi,python 安装程序setuptools-0.6c11.win32-py2.7.exe,安装 selenium 必备软件pip

2、-1.0.2.tar.gzselenium-2.18.1.tar.gz(pip 命令下载安装) ,selenium 安装程序selenium-ide-1.6.0.xpi,firefoxWebDriverselenium-server-standalone-2.18.0.jar,ieWebDriverchromedriver.exe(chromedriver_win_18.0.1022.0.zip ) ,chromeWebDriverufida.zip安装 python双击安装 python-2.7.2.msi 即可。建议安装在默认路径:C:Python27添加环境变量 Path:C:Pytho

3、n27安装验证:cmd 命令中,输入 python,进入 python command line 模式安装 selenium安装 setuptools双击安装 setuptools-0.6c11.win32-py2.7.exe 即可。安装路径 C:Python27Libsite-packages必须安装 setuptools,是因为 pip 和 selenium 的安装文件 setup.py 中使用。安装 pip解压 pip-1.0.2.tar.gz,将解压文件放到 C:下,在 DOS 环境进入 C:pip-1.0.2,执行命令:python setup.py install。请注意安装路径。

4、默认在:C:Python27Scripts。安装 selenium进入 pip.exe 所在路径,运行命令行:pip install -U selenium。 (需要网络,出现下列错误.忽略)D:Python27Scriptspip install -U seleniumDownloading/unpacking selenium4Downloading selenium-2.24.0.tar.gz (1.9Mb): 1.9Mb downloadedRunning setup.py egg_info for package seleniumD:Python27libdistutilsdist.

5、py:267: UserWarning: Unknown distribution option: src_rootwarnings.warn(msg)warning: no files found matching docsapipyindex.rstInstalling collected packages: seleniumFound existing installation: selenium 2.24.0Uninstalling selenium:Successfully uninstalled seleniumRunning setup.py install for seleni

6、umD:Python27libdistutilsdist.py:267: UserWarning: Unknown distribution option: src_rootwarnings.warn(msg)warning: no files found matching docsapipyindex.rstSuccessfully installed seleniumCleaning up.安装 webdriver安装 firefox webdirver将 selenium-ide-1.6.0.xpi 拖进 firefox 浏览器,即开始安装Firefox 浏览器选装 firebug、Fi

7、rePath 插件安装 chrome webdriver解压 chromedriver.exe 到 Python 的安装目录下,如 C:Python27。添加 C:UsersAdministratorAppDataLocalGoogleChromeApplication(chrome 安装路径,这里是 win7 下的安装路径)到环境变量 path安装 ie webdriver复制 IEDriverServer.exe 到 C:Python27设置 IE 浏览器,Internet 选线安全,把各模式的“启动保护模式”设置成一样(或者全部启动,或者全部不启动) 。自定义模块添加环境变量 PYTHO

8、NPATH,定义为工程所在(自定义功能模块)的路径。5D:workspaceautoprojectsrcDemo#!/usr/bin/pythonfrom selenium import webdriverfrom mon.exceptions import TimeoutExceptionfrom selenium.webdriver.support.ui import WebDriverWait # available since 2.4.0 import time# Create a new instance of the Chrome driver, Chrome(), Firefox

9、() or Ie() is useabledriver = webdriver.Chrome() # go to the baidu home pagedriver.get(“http:/“)# find the element thats name attribute is q (the google search box)inputElement = driver.find_element_by_xpath (“/inputname=wd“)submitElement = driver.find_element_by_xpath (“id(su)“)# type in the searchinputElement.send_keys(“Cheese!“)# submit the formsubmitElement.submit()# the page is ajaxy so the title is originally this:print driver.titledriver.quit()

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。