pythonweb自动化测试实例_[转载]python webdriver自动化测试实例

python webdriver自动化测试初步印象

以下示例演示启动firefox,浏览google.com,搜索Cheese,等待搜索结果,然后打印出搜索结果页的标题

from selenium import webdriver

from selenium.common.exceptions import TimeoutException

from selenium.webdriver.support.ui import WebDriverWait #

available since 2.4.0

from selenium.webdriver.support import expected_conditions as

EC # available since 2.26.0

# Create a new instance of the Firefox driver

driver = webdriver.Firefox()

# go to the google home page

driver.get("http://www.google.com")

# find the element that's name attribute is q (the google

search box)

inputElement = driver.find_element_by_name("q")

# type in the search

inputElement.send_keys("Cheese!")

# submit the form (although google automatically searches now

without submitting)

inputElement.submit()

# the page is ajaxy so the title is originally this:

print driver.title

try:

# we have to wait for the page to refresh, the last thing that

seems to be updated is the title

WebDriverWait(driver,

10).until(EC.title_contains("cheese!"))

# You should see "cheese! - Google Search"

print driver.title

finally:

driver.quit()

python webdriver自动化测试通过控件xpath定位元素

有一段html代码如下:

现在通过xpath来查找到相应的input元素,代码demo如下:

from selenium.webdriver.common.by import By

#查找所有input元素方法一

inputs = driver.find_elements_by_xpath("//input")

#查找所有input元素方法二

inputs = driver.find_elements(By.XPATH, "//input")

#查找指定的input元素,比如查找name为other的input

inputs =

driver.find_element_by_xpath("//input[@name='other']")

python webdriver自动化测试在window和frame之间切换

from selenium import webdriver

# 启动firefox初始化webdriver

driver = webdriver.Firefox()

1、切换到指定窗口名的窗口,

例如有一段html代码如下

driver.switch_to_window("windowName")

2、当然也可以通过句柄来切换,示例如下

for handle in driver.window_handles:

driver.switch_to_window(handle)

上述代码会遍历,一个个的切换。

3、通过frame名称切换到指定的frame

driver.switch_to_frame("frameName")

4、也可以通过frame的索引来切换

driver.switch_to_frame(0) #切换到第一个frame

python使用selenium rc和webdriver启动不同浏览器的方法

Selenium 1 -启动 Internet Explorer

from selenium import selenium

selenium = selenium("localhost", 4444, "*iexplore",

"http://google.com/")

selenium.start()

Selenium 1 - 启动Firefox

from selenium import selenium

selenium = selenium("localhost", 4444, "*firefox",

"http://google.com/")

selenium.start()

webdriver - 启动Firefox

from selenium import webdriver

driver = webdriver.Firefox()

webdriver - 启动Chrome

from selenium import webdriver

driver = webdriver.Chrome()

webdriver - 启动Remote

from selenium import webdriver

driver = webdriver.Remote( browser_name="firefox",

platform="any")

webdriver - 启动IE

from selenium import webdriver

driver = webdriver.Ie()

备注: 除了启动IE外,webdriver启动其他浏览器均需安装相应浏览器的驱动组件,关于这块的环境搭建请参见

python webdriver自动化测试通过控件css定位元素

有一段html代码如下:

milkcheese

现在通过css来查找到相应的span元素,代码demo如下:

from selenium.webdriver.common.by import By

#查找css为span元素方法一

cheese = driver.find_element_by_css_selector("#food

span.dairy.aged")

#查找css为span元素方法二

cheese = driver.find_element(By.CSS_SELECTOR, "#food

span.dairy.aged")

python webdriver自动化测试通过控件 Partial Link Text定位元素

有一段html代码如下:

现在通过Partial Link Text来查找到相应的a元素,代码demo如下:

from selenium.webdriver.common.by import By

#查找Partial Link Text为a元素方法一

cheese =

driver.find_element_by_partial_link_text("cheese")

#查找Partial Link Text为a元素方法二

cheese = driver.find_element(By.PARTIAL_LINK_TEXT,

"cheese")

python webdriver自动化测试通过控件link text定位元素

有一段html代码如下:

现在通过link text来查找到相应的a元素,代码demo如下:

from selenium.webdriver.common.by import By

#查找link text为cheese元素方法一

cheese = driver.find_element_by_link_text("cheese")

#查找link text为cheese元素方法二

cheese = driver.find_element(By.LINK_TEXT, "cheese")

python webdriver自动化测试通过控件tag name定位元素

有一段html代码如下:

现在通过tag name来查找到相应的iframe元素,代码demo如下:

from selenium.webdriver.common.by import By

#查找tag name为iframe元素方法一

frame = driver.find_element_by_tag_name("iframe")

#查找tag name为iframe元素方法二

frame = driver.find_element(By.TAG_NAME, "iframe")

python webdriver自动化测试通过控件class name定位元素

有一段html代码如下:

Cheddar

Gouda

现在通过class name来查找到相应的div元素,代码demo如下:

from selenium.webdriver.common.by import By

#查找第一个class为cheese的div元素

cheeses = driver.find_elements_by_class_name("cheese")

# 查找所有class为cheese的div元素

cheeses = driver.find_elements(By.CLASS_NAME, "cheese")

python webdriver自动化测试通过控件name定位元素

#导入webdriver

from selenium import webdriver

# 启动firefox初始化webdriver

# ie: driver = webdriver.Ie()

# chrome: driver = webdriver.Chrome()

driver = webdriver.Firefox()

# 访问baidu官网

driver.get("http://www.baidu.com")

# 定位输入框

element= driver.find_element_by_name("wd")

# 打印出来看一下

# 会看到一个内存地址,说明已经找到

print element

# 关闭浏览器、退出webdriver

driver.quit()

python webdriver自动化测试通过控件id定位元素

#导入webdriver

from selenium import webdriver

# 启动firefox初始化webdriver

# ie: driver = webdriver.Ie()

# chrome: driver = webdriver.Chrome()

driver = webdriver.Firefox()

# 访问baidu官网

driver.get("http://www.baidu.com")

# 定位输入框

element = driver.find_element_by_id("kw")

# 打印出来看一下

# 会看到一个内存地址,说明已经找到

print element

# 关闭浏览器、退出webdriver

driver.quit()

python webdriver自动化测试访问某个网址

python webdriver自动化测试访问指定网址示例

#导入webdriver

from selenium import webdriver

# 启动firefox初始化webdriver

# ie: driver = webdriver.Ie()

# chrome: driver = webdriver.Chrome()

driver = webdriver.Firefox()

# 访问google官网

# 记得网址前最好带http

driver.get("http://www.google.com")

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/542169.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

repeated_Ruby中带有示例的Array.repeated_combination()方法

repeatedArray.repeated_combination()方法 (Array.repeated_combination() Method) In this article, we will study about Array.repeated_combination() method. You all must be thinking the method must be doing something which is related to creating combinations o…

ApacheHttpServer修改httpd.conf配置文件

转自:https://blog.csdn.net/dream1120757048/article/details/77427351 1. 安装完 Apache HTTP Server 之后,还需要修改一下配置文件。 Apache 的配置文件路径如下: C:\Program Files\Apache Software Foundation\Apache2.2\conf\httpd.conf…

大学物理实验电学基本参数的测量实验报告_大学物理电学实验报告

技校网专门为您推荐的类似问题答案问题1:怎样写大学计算机基础有关制作个人简历的实验报告一、实验名称:个人简历的制作 二、实验目的与要求: 1、熟悉Word 2003的基本操作 2、掌握利用网络搜索获得个人简历所需的资料 3、培养同学们动手能力和自学能力。…

python 线程模块_Python线程模块| main_thread()方法与示例

python 线程模块Python threading.main_thread()方法 (Python threading.main_thread() Method) main_thread() is an inbuilt method of the threading module in Python. It is used to return the main Thread object. It is the thread from which the Python interpreter …

linux中系统修复

1. 引导文件丢失 (1)引导文件所在路径 /boot/grub2/grub.cfg 需提前知道根目录所在分区和内核版本 uname -r 查询内核版本命令 模拟问题 rm -fr /boot/grub2/grub.cfg 一不小心把这玩意儿给删了,还reboot了 完了以后机子开不了了就这情况 …

dw相对路径怎么改_密云ETL怎么收费

密云ETL怎么收费,派客动力,公司依托自有产品,整合行业资源,构建先进的数据管理解决方案,解决企业和组织的核心数据问题以及被影响的业务挑战。这种工具我都使用过,优点有:图形界面,开…

python 自动化之路 day 08_2 网络编程

本节内容 Socket介绍Socket参数介绍基本Socket实例Socket实现多连接处理通过Socket实现简单SSH通过Socket实现文件传送作业:开发一个支持多用户在线的FTP程序1. Socket介绍 概念 A network socket is an endpoint of a connection across a computer network. Today…

查看scala变量数据类型_Scala文字,变量和数据类型| Scala编程教程

查看scala变量数据类型1)Scala数据类型 (1) Scala Data Types) Scala has the same set of data types as in Java. The traditional 14 data types are inherited as it is in Scala. Scala具有与Java中相同的数据类型集。 传统的14种数据类型在Scala中被继承。 The Followin…

Elasticsearch过滤与聚合的先后顺序java实现

2019独角兽企业重金招聘Python工程师标准>>> 一、Elasticsearch的聚合 ES的聚合相当于关系型数据库里面的group by,例如查找在性别字段男女人数的多少并且按照人数的多少进行排序,在使用MySQL的时候,可以使用如下的句子 select se…

js手机号中间四位_11位手机号码隐藏中间四位数,学会Substitute函数一键搞定!...

相信许多朋友都有见过手机号码被*号隐藏中间四位数的情况。许多地方为了保护个人信息,都会将手机号的中间四位数用星号代替。如上图所示,我们需要将原来的手机号码,通过*号的方式变为隐藏后的加密模式。下面我们就来学习一下如何利用substitu…

python 整数最大_Python程序使用floor()方法查找最大整数

python 整数最大The greatest integer function is a function (real numbers function) to itself that is defined as follows: it sends any real number to the largest integer that is less than or equal to it. 最大整数函数是一个对其自身定义的函数(实数函数)&#x…

selinux对ftp的影响

1.啥是selinux 安全增强型Linux(Security-Enhanced Linux)简称selinux,它是一个Linux内核模块,也是Linux的一个安全子系统。 selinux的状态: Enforcing:强制模式,在selinux运作时,已经开始限制d…

ES6的class方法基本用法

为什么80%的码农都做不了架构师?>>> 在ES5中我们通常通过构造函数,定义并生成新对象。 例如: function Point(name,age){this.namename;this.ageage;}Point.prototype{Who:function(){return "My name is "this.name",My age…

celery的中文_celery异步任务框架

目录Celery一、官方二、Celery异步任务框架Celery架构图消息中间件任务执行单元任务结果存储三、使用场景四、Celery的安装配置五、两种celery任务结构:提倡用包管理,结构更清晰七、Celery执行异步任务包架构封装八、基本使用celery.py 基本配置tasks.py…

关于linux mv指令机制

最近在mv文件的时候,操作失误将生产服务器一个1TB的文件夹mv到了/opt/test目录,因为最后/opt/目录被沾满所以1TB的文件夹没有迁移过来,写入了30GB数据到了/opt/test目录,因为系统分区被沾满,所以把test目录给删除了。 …

数据库的管理

1. 数据库的简介 定义:数据库(Database)就是一种按数据结构来组织,存储和管理数据的仓库,其中包含数据挖掘,大数据信息的推送。 mariadb数据库管理系统是mysql的一个分支,主要由开源社区在维护&…

C#中的Dictionary字典类介绍(转载)

C#中的Dictionary字典类介绍 关键字:C# Dictionary 字典 作者:txw1958原文:http://www.cnblogs.com/txw1958/archive/2012/11/07/csharp-dictionary.html 说明 必须包含名空间System.Collection.Generic Dictionary里面的每一个元素都…

求阶乘的第一个非零数字_查找数字阶乘中的尾随零

求阶乘的第一个非零数字Problem statement: 问题陈述: Find the number of trailing zeros in n! (Where, n is the given input). 在n中找到尾随零的数目! (其中, n是给定的输入)。 Solution: 解: Computing a factorial is o…

高速缓存dns

1. DNS: Domain Name System,域名系统。 万维网上作为域名和IP地址相互映射的一个分布式数据库,能够使用户更方便的访问互联网。他主要负责把域名和IP的相互转换,DNS运行与TCP|UDP的53端口上。 2. 高速缓存DNS:DNS服务…

python log日志级别_python – 日志记录:如何为处理程序设置最大日志级别

您可以向文件处理程序添加过滤器.这样,您可以将特定级别重定向到不同的文件.import loggingclass LevelFilter(logging.Filter):def __init__(self, low, high):self._low lowself._high highlogging.Filter.__init__(self)def filter(self, record):if self._low < recor…