python自动化测试selenium核心技术3种等待方式详解

这篇文章主要为大家介绍了python自动化测试selenium的核心技术三种等待方式示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步早日升职加薪

UI自动化测试过程中,可能会出现因测试环境不稳定、网络慢等情况,如果不做任何处理的话,会出现无法定位到特定元素而报错,导致自动化测试无法顺利执行。

slenium自动化测试中,主要涉及三种等待方式:    

1 使用python自带模块time的sleep方式     

缺点:即使网络条件较好时,依旧按照预定固定时间等待,一般不建议使用,脚本调试可使用。

示例脚本:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

from selenium import  webdriver

from time import sleep

class TestWait(object):

    driver = webdriver.Chrome()

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

    def test_sleep(self):

        self.driver.find_element_by_id("kw").send_keys("sleep test")

        # sleep(2) #等待固定时间

        self.driver.implicitly_wait(2# 隐式等待

        self.driver.find_element_by_id("su").click()

        self.driver.quit()

if __name__ == '__main__':

    wait=TestWait()

    wait.test_sleep()

2 隐式等待(implicitly_wait)

隐式等待设置的时间是最长的时间,如果在规定时间内网页加载完成,则执行下一步,否则一直等到时间结束,然后执行下一步。

注意:隐式等待对driver整个周期都起作用,一般在最开始设置一次就可以了。不要当做固定等待,哪里都设置隐式等待。

示例脚本:

1

2

3

4

5

6

7

8

9

10

11

12

13

from selenium import  webdriver

from time import sleep

class TestWait(object):

    driver = webdriver.Chrome()

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

    def test_sleep(self):

        self.driver.find_element_by_id("kw").send_keys("sleep test")

        self.driver.implicitly_wait(2# 隐式等待

        self.driver.find_element_by_id("su").click()

        self.driver.quit()

if __name__ == '__main__':

    wait=TestWait()

    wait.test_sleep()

现在我也找了很多测试的朋友,做了一个分享技术的交流群,共享了很多我们收集的技术文档和视频教程。
如果你不想再体验自学时找不到资源,没人解答问题,坚持几天便放弃的感受
可以加入我们一起交流。而且还有很多在自动化,性能,安全,测试开发等等方面有一定建树的技术大牛
分享他们的经验,还会分享很多直播讲座和技术沙龙
可以免费学习!划重点!开源的!!!
qq群号:110685036【暗号:csdn999】

3 显示等待(WebDriverWait)

显式等待允许等待条件的发生,所以非常适合在浏览器及其DOM和WebDriver脚本之间同步状态。

需要引入包:from selenium.webdriver.support.wait import WebDriverWait

WebDriverWait参数说明:

WebDriverWait(driver, timeout=3).until(some_condition)

两种方法:until和util_not

场景:

打开百度首页,等待页面标题出现:百度一下,你就知道,再执行输入搜索关键词,点击“百度一下”按钮。

示例脚本:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

from selenium import webdriver

from selenium.webdriver.support.wait import WebDriverWait

from selenium.webdriver.support import expected_conditions as ec

class TestWait(object):

    def setup(self):

        self.driver = webdriver.Chrome()

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

    def test_webdreiverwait(self):

        webdreiverwaits =WebDriverWait(self.driver,2)

        webdreiverwaits.until(ec.title_is("百度一下,你就知道"))

        self.driver.find_element_by_id("kw").send_keys("test_webdreiverwait test")

        self.driver.find_element_by_id("su").click()

    def teardown(self):

        self.driver.quit()

if __name__ == '__main__':

    wait=TestWait()

    wait.test_webdreiverwait()

三种等待完整示例脚本:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

from selenium import webdriver

from time import sleep

from selenium.webdriver.support.wait import WebDriverWait

from selenium.webdriver.support import expected_conditions as ec

class TestWait(object):

    def setup(self):

        self.driver = webdriver.Chrome()

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

     def test_sleep(self):

        self.driver.find_element_by_id("kw").send_keys("sleep test")

        sleep(2) #等待固定时间

     self.driver.find_element_by_id("su").click() 

    def test_implicitly(self):

        self.driver.find_element_by_id("kw").send_keys("implicitly test")

        self.driver.implicitly_wait(2# 隐式等待

     self.driver.find_element_by_id("su").click()

    def test_webdreiverwait(self):

        webdreiverwaits =WebDriverWait(self.driver,2)

        webdreiverwaits.until(ec.title_is("百度一下,你就知道"))

        self.driver.find_element_by_id("kw").send_keys("test_webdreiverwait test")

        self.driver.find_element_by_id("su").click()

    def teardown(self):

        self.driver.quit()

if __name__ == '__main__':

    wait=TestWait()

    # wait.test_sleep()

    # wait.test_implicitly()

    wait.test_webdreiverwait()

【常见问题】:运行脚本报empty suite:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

from selenium import  webdriver

from time import sleep

class TestWait(object):

    def __init__(self):

        self.driver = webdriver.Chrome()

        self.driver.get('http://www.baidu.com')

    def test_sleep(self):

        self.driver.find_element_by_id("kw").send_keys("sleep test")

        # sleep(2) #等待固定时间

        self.driver.implicitly_wait(2# 隐式等待

        self.driver.find_element_by_id("su").click()

        self.driver.quit()

if __name__ == '__main__':

    wait=TestWait()

    wait.test_sleep()

【解决方法】:脚本修改

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

from selenium import webdriver

from time import sleep

from selenium.webdriver.support import expected_conditions as EC

from selenium.webdriver.support.wait import WebDriverWait

class TestCase(object):

    def setup(self):

        self.driver = webdriver.Chrome()

        self.driver.get('http://www.baidu.com')

        # sleep(2)

    def test_sleep(self):

        self.driver.find_element_by_id('kw').send_keys('selenium')

        # sleep(2) # 线程阻塞 blocking wait

        self.driver.find_element_by_id('su').click()

        # sleep(3) 

    def test_implicitly(self):

        self.driver.implicitly_wait(10)

        self.driver.find_element_by_id('kw').send_keys('selenium')

        # sleep(2) # 线程阻塞 blocking wait

        self.driver.find_element_by_id('su').click()

        # sleep(3)

     def test_wait(self):

        wait = WebDriverWait(self.driver,2)

        wait.until(EC.title_is('百度一下,你就知道'))

        self.driver.find_element_by_id('kw').send_keys('selenium')

        # sleep(2) # 线程阻塞 blocking wait

        self.driver.find_element_by_id('su').click()

        # sleep(3)

    def teardown(self):

        self.driver.quit()

if __name__ == '__main__':

    case = TestCase()

    # case.test_sleep()

    # case.test_implicitly()

    case.test_wait()

以:selenium自动化测试学习总结!

以上就是python自动化测试selenium核心技术三种等待方式详解的详细内容,更多关于selenium三种等待方式的资料请关注小编相关文章!end如果文章对你有帮助,记得点赞,收藏,加关注。会不定期分享一些干货哦......

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

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

相关文章

安防监控系统EasyCVR平台调用hls地址生成流的时间过长,该如何解决?

安防视频监控/视频集中存储/云存储/磁盘阵列EasyCVR平台可拓展性强、视频能力灵活、部署轻快,可支持的主流标准协议有国标GB28181、RTSP/Onvif、RTMP等,以及支持厂家私有协议与SDK接入,包括海康Ehome、海大宇等设备的SDK等。平台可拓展性强、…

[工业自动化-13]:西门子S7-15xxx编程 - 分布式从站 - 硬件配置

目录 前言: 一、通过博图软件完成对ET200 SP分布式从站的硬件配置 二、从站组态配置的常见问题与解决 三、分布式从站与CPU的profiNet连接 3.1 概述 3.2 配置主站与从站的profinet连接 四、Profinet和普通以太网区别 4.1 概述 4.2 协议栈 五、主站与从站连…

【开源】基于JAVA的生活废品回收系统

目录 一、摘要1.1 项目介绍1.2 项目录屏 二、研究内容三、界面展示3.1 登录注册3.2 资源类型&资源品类模块3.3 回收机构模块3.4 资源求购/出售/交易单模块3.5 客服咨询模块 四、免责说明 一、摘要 1.1 项目介绍 生活废品回收系统是可持续发展的解决方案,旨在鼓…

在 SQL 中,当复合主键成为外键时应该如何被其它表引用

文章目录 当研究一个问题慢慢深入时,一个看起来简单的问题也暗藏玄机。在 SQL 中,主键成为外键这是一个很平常的问题,乍一看没啥值得注意的。但如果这个主键是一种复合主键,而另一个表又引用这个键作为它的复合主键,问…

区域入侵AI算法如何应用在工地场景,保卫工地施工安全?

在工地、厂区等施工场所,安全保障是必不可少的,特别是在人工智能技术日益成熟的今天,如何利用旭帆科技AI智能视频中的区域入侵算法助力智慧工地、保障工地安全呢? 1、建筑物周界安全 TSINGSEE青犀区域入侵算法可以用于监控建筑物…

韩国黄金代理商主动出击时机

受中东局势影响,十月底国际价格一度重新站上2000美元大关,韩国的黄格也随之出现上涨,当地投资者对黄金投资的热情再次升温。在韩国首尔市钟路附近的金店一条街,聚集了大大小小上百家金店,即使是在平日的中午&#xff0…

JavaScript中的事件冒泡、事件捕获、事件委托

DOM事件流(event flow )存在三个阶段:事件捕获阶段、处于目标阶段、事件冒泡阶段。 Dom标准事件流的触发的先后顺序为:先捕获再冒泡。即当触发dom事件时,会先进行事件捕获,捕获到事件源之后通过事件传播进行…

AI绘画工具汇总

目前市面上的AI绘画工具十分繁杂,以下工具可供参考: 1. Midjourney 添加图片注释,不超过 140 字(可选) Midjourney:最主流的AI绘图工具之一,出图效果好,简单学习就可上手。需要在di…

C++基础知识记录

github仓库不定期更新: https://github.com/han-0111/CppLearning 文章目录 C如何工作编译器和链接器编译器预处理(Preprocessing)includedefineif/endif 链接器一种比较复杂的情况 变量变量类型intcharshortlonglong longfloatdoublebool如何查看数据大小 函数头文件条件语句…

安装node.js指定任意版本详解

Node.js是一种基于Chrome V8引擎的JavaScript运行时环境。它允许开发人员使用JavaScript编写服务器端和网络应用程序。与传统的JavaScript在浏览器中执行不同,Node.js使得JavaScript可以在服务器端运行。 Node.js具有以下特点: 1. 非阻塞式I/O&#xf…

vcenter server (部署较大服务器)

作用 VMware vCenter是集中管理控制台,管理所有安装了VMware ESXI的主机 使用vCenter Server可以对虚拟机进行实时的监控,包括服务器硬件、网络和共享的存储,并可以进行故障诊断。 可以查看实时的统计和图表,监控虚拟主机和资源…