python自动化测试selenium核心技术等待条件教程
Selenium中的鼠标和键盘事件被封装在ActionChains类中,使用方法:
ActionChains(driver).click(btn).perform()ActionChains中常用方法:
【python自动化测试selenium核心技术等待条件教程】
文章图片
示例网站:http://sahitest.com/demo
示例场景:打开Sahi Tests页面,点击“Alert Test”页面,鼠标点击页面中“Click For Alert”按钮,弹出警告提示框,判断页面是否存在alert,如存在则切换到警告框,并获取警告文本信息,之后点警告框中的确定按钮。
文章图片
文章图片
示例脚本:
from selenium import webdriverfrom time import sleepfrom selenium.webdriver.support.wait import WebDriverWaitfrom selenium.webdriver.support import expected_conditions as ecclass TestWaitCondition(object):def setup(self):self.driver = webdriver.Chrome()self.driver.get("https://sahitest.com/demo/") def test_waitcondition(self):#点页面上的Alert Testself.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()
运行结果:
文章图片
以上:来自极客时间课程:selenium自动化测试学习总结。
以上就是python自动化测试selenium核心技术等待条件教程的详细内容,更多关于selenium等待条件教的资料请关注脚本之家其它相关文章!
推荐阅读
- python学习之|python学习之 实现QQ自动发送消息
- 逻辑回归的理解与python示例
- python自定义封装带颜色的logging模块
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- Python基础|Python基础 - 练习1
- Python爬虫|Python爬虫 --- 1.4 正则表达式(re库)
- Python(pathlib模块)
- 人脸识别|【人脸识别系列】| 实现自动化妆
- python青少年编程比赛_第十一届蓝桥杯大赛青少年创意编程组比赛细则
- Python数据分析(一)(Matplotlib使用)