python自动化测试selenium核心技术等待条件教程

作者:aovenus 时间:2022-02-23 15:18:04 

Selenium中的鼠标和键盘事件被封装在ActionChains类中,使用方法:

ActionChains(driver).click(btn).perform()

ActionChains中常用方法:

python自动化测试selenium核心技术等待条件教程

示例网站:http://sahitest.com/demo

示例场景:打开Sahi Tests页面,点击“Alert Test”页面,鼠标点击页面中“Click For Alert”按钮,弹出警告提示框,判断页面是否存在alert,如存在则切换到警告框,并获取警告文本信息,之后点警告框中的确定按钮。

python自动化测试selenium核心技术等待条件教程

python自动化测试selenium核心技术等待条件教程

示例脚本:


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 TestWaitCondition(object):
   def setup(self):
       self.driver = webdriver.Chrome()
       self.driver.get("https://sahitest.com/demo/")

def test_waitcondition(self):
       #点页面上的Alert Test
       self.driver.find_element_by_xpath("/html/body/table/tbody/tr/td[3]/a[1]").click()
       #鼠标点击页面中“Click For Alert”按钮
       self.driver.find_element_by_name("b1").click()

wait = WebDriverWait(self.driver,2)
       #等待并判断警告框是否存在
       wait.until(ec.alert_is_present())
       #切换到alert页面
       alert = self.driver.switch_to.alert
       #获取并打印警告框中文本
       print(alert.text)
       #点弹出警告框中的确定
       alert.accept()
       self.driver.quit()

运行结果:

python自动化测试selenium核心技术等待条件教程

以上:来自极客时间课程:selenium自动化测试学习总结。

来源:https://blog.csdn.net/aovenus/article/details/121185584

标签:selenium,自动化测试,等待
0
投稿

猜你喜欢

  • python入门教程之基本算术运算符

    2023-05-24 11:48:21
  • 高效的删除HTML标签的函数

    2009-02-26 13:02:00
  • Python利用matplotlib绘制折线图的新手教程

    2021-08-18 18:00:01
  • django admin后台添加导出excel功能示例代码

    2023-10-19 10:43:48
  • 详解用python生成随机数的几种方法

    2022-01-24 14:17:42
  • Python格式化输出的具体实现

    2023-11-20 16:22:19
  • 代码详解Python的函数基础(2)

    2023-08-11 17:59:40
  • python实现复制文件到指定目录

    2022-09-25 20:53:12
  • python实现图像外边界跟踪操作

    2021-07-20 17:38:33
  • Google谷歌农历鼠年春节的变化

    2008-02-11 17:07:00
  • python中Django文件上传方法详解

    2021-12-31 13:40:41
  • Python将图片批量从png格式转换至WebP格式

    2023-01-11 00:27:49
  • 13个你可能未使用过的Python特性分享

    2021-03-07 19:14:37
  • Python常用小技巧总结

    2023-02-27 17:50:16
  • 网页版权的正确写法

    2007-09-22 09:13:00
  • Django框架中间件(Middleware)用法实例分析

    2021-01-04 09:27:38
  • Python 3.6 读取并操作文件内容的实例

    2021-11-21 16:52:14
  • Pycharm中import torch报错的快速解决方法

    2022-03-11 05:23:26
  • Ubuntu下Python+Flask分分钟搭建自己的服务器教程

    2023-11-12 04:37:43
  • Python监听键盘和鼠标事件的示例代码

    2022-06-14 07:05:23
  • asp之家 网络编程 m.aspxhome.com