• selenium自动化测试入门 —— 设置等待时间


    time.sleep(3) 固定等待3秒

    driver.implicitly_wait(10) 隐性的等待,对应全局

    WebDriverWait( driver, timeout).until(‘有返回值的__call__()方法或函数’) 显性的等待,对应到元素

    一、time.sleep(seconds) 固定等待

    1. import time
    2. time.sleep(3) #等待3

    time.sleep(seconds) seconds参数为整数,单位(秒)。

    它是Python的time提供的休眠方法。

    常用于短时间的等待,为了自动测试用例的执行效率固定等待的时间需要控制在3秒内。在用例中尽量少用固定等待。

    二、智能隐性的等待implicitly_wait(回应超时等待)

    driver.implicitly_wait(time_to_wait)

    回应超时等待,隐性的,设置后对应的是全局,如查找元素。

    driver.implicitly_wait(10)  # 设置全局隐性等待时间,单位秒

    每次driver执行 找不到元素都会等待设置的时间,它的值设置的过长对用例执行效率有很大的影响,必须在执行完成之后还原回来。driver.implicitly_wait() 要慎之又慎的使用。

    driver对它的默认值为0,driver.implicitly_wait(0)能还原隐性等待的设置时间。

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

    三、智能显性等待WebDriverWait

    WebDriverWait(driver, timeout, poll_frequency=0.5, ignored_exceptions=None)

    参数说明:

    driver 为webdriver驱动
    timeout 最长超时时间,单位(秒)
    poll_frequency 循环查找元素每次间隔的时间,默认0.5秒
    ignored_exceptions 超时后需要输出的异常信息

    WebDriverWait()下面有两个方法可用until()和until_not()

    WebDriverWait(driver, timeout).until(method, message='')

    method 函数或者实例__call__()方法返回True时停止,否则超时后抛出异常。

    参数说明:

    method 在等待时间内调用的方法或者函数,该方法或函数需要有返回值,并且只接收一个参数driver。
    message 超时时抛出TimeoutException,将message传入异常显示出来

    WebDriverWait(driver, timeout).until_not(method, message='')

    于上面的until() 相反,until_not 中的method函数或者实例__call__()方法返回False结束,否则抛出异常。

    until方法使用的method 的函数或者类__call()__方法详解:

    函数我们一般采用匿名函数lambda 。

    lambda driver:driver.find_element(<定位元素>) # 当定位的元素时为True,无元素时为False。如示例1、2:

    WebDriverWait示例1:

    WebDriverWait(driver,5).until(lambda driver:driver.find_element_by_id('query'))

    5秒内等待元素(id='query')出现,lambda driver:driver.find_element_by_id('query') 为一个匿名函数,只有一个driver参数,返回的是查找的元素对象。

    WebDriverWait示例2:

    WebDriverWait(driver, 5).until_not(lambda driver:driver.find_element_by_name('query'))

    5秒内等待元素消失,同示例1 until_not 要求无元素返回即元素不存在于该页面。

    定义类中的__call()__方法。

    1. class wait_element(object):
    2. def __init__(self, locator):
    3. self.locator = locator
    4. def __call__(self, driver):
    5. return driver.find_element(self.locator)
    6. WebDriverWait(driver, 5).until(wait_element((By.ID, 'query'))) # 等待元素出现
    7. WebDriverWait(driver, 5).until_not(wait_element((By.ID, 'query'))) # 等待元素消失

    wait_element类中__init__()方法接收需要定位的元素,__call__()方法中只能有唯一变量driver,并且返回元素对象。

    这样做是是不是很麻烦,其实selenium提供的一个库进行操作,expected_conditions库。引入位置

    from selenium.webdriver.support import expected_conditions as ec,它囊括了我们需要使用等待的所有情况。

    四、expected_conditions 类库

    from selenium.webdriver.support import expected_conditions as ec  # 引入包

    下面示例都是以搜狗搜索首页为例。

    方法中参数说明 locator=(By.ID, 'id') 表示使用By方法定位元素的元组,element表示获取的webElement元素对象。

    ec.title_is(‘title’) 判断页面标题等于title

    ec.title_contains(‘title’) 判断页面标题包含title

    1. WebDriverWait(driver, 10).until(ec.title_is('搜狗搜索引擎 - 上网从搜狗开始')) # 等待title 于参数相等
    2. WebDriverWait(driver, 10).until(ec.title_contains('搜狗搜索引擎')) # 等待title 包含 参数的内容

    ec.presence_of_element_located(locator) 等待locator元素是否出现

    ec.presence_of_all_elements_located(locator) 等待所有locator元素是否出现

    1. WebDriverWait(driver, 10).until(ec.presence_of_element_located((By.ID, 'query')))
    2. WebDriverWait(driver, 10).until(ec.presence_of_all_elements_located((By.ID, 'query')))

    ec.visibility_of_element_located(locator) 等待locator元素可见

    ec.invisibility_of_element_located(locator) 等待locator元素隐藏

    ec.visibility_of(element) 等待element元素可见

    1. WebDriverWait(driver, 10).until(ec.visibility_of_element_located((By.ID, ''stb''))) # 等待元素可见
    2. WebDriverWait(driver, 10).until(ec.invisibility_of_element_located((By.ID, ''stb''))) # 等待元素隐藏
    3. WebDriverWait(driver, 10).until(ec.visibility_of(driver.find_element_by_link_text('高级搜索'))) # 等待元素可见

    ec.text_to_be_present_in_element(locator,text) 等待locator的元素中包含text文本

    ec.text_to_be_present_in_element_value(locator,value) 等待locator元素的value属性为value

    1. WebDriverWait(driver, 10).until(ec.text_to_be_present_in_element((By.ID, 'erwx'), '搜索APP')) # 等待元素中包含搜索APP文本
    2. WebDriverWait(driver, 10).until(ec.text_to_be_present_in_element_value((By.ID, 'query'),'selenium')) # 等待元素的值为 selenium,一般用于输入框

    ec.frame_to_be_available_and_switch_to_it(locator) 等待frame可切入

    1. WebDriverWait(driver, 10).until(ec.frame_to_be_available_and_switch_to_it((By.ID, 'frame')))
    2. WebDriverWait(driver, 10).until(ec.frame_to_be_available_and_switch_to_it('frameid'))
    3. ec.alert_is_present() 等待alert弹出窗口出现
    4. WebDriverWait(driver, 10).until(ec.alert_is_present())

    ec.element_to_be_clickable(locator) 等待locator元素可点击

    WebDriverWait(driver, 10).until(ec.element_to_be_clickable((By.ID, 'kw')))

    等待元素被选中,一般用于复选框,单选框

    ec.element_to_be_selected(element) 等待element元素是被选中

    ec.element_located_to_be_selected(locator) 等待locator元素是被选中ec.element_selection_state_to_be(element, is_selected) 等待element元素的值被选中为is_selected(布尔值)

    ec.element_located_selection_state_to_be(locator,is_selected) 等待locator元素的值是否被选中is_selected(布尔值)

    1. from selenium import webdriver
    2. import time
    3. from selenium.webdriver.support.wait import WebDriverWait
    4. from selenium.webdriver.support import expected_conditions as ec # 引入包
    5. from selenium.webdriver.common.by import By
    6. driver = webdriver.Chrome()
    7. driver.maximize_window()
    8. driver.get(r'https://www.baidu.com/')
    9. driver.find_element_by_link_text('设置').click()
    10. WebDriverWait(driver, 3).until(ec.element_to_be_clickable((By.LINK_TEXT, '搜索设置'))) # 等待搜索可点击,不可缺少
    11. driver.find_element_by_link_text('搜索设置').click()
    12. element = driver.find_element_by_id('s1_1')
    13. WebDriverWait(driver, 2).until(ec.element_to_be_selected(element)) # element被选中
    14. WebDriverWait(driver, 10).until(ec.element_located_to_be_selected((By.ID, 'SL_0'))) # id=’SL_0’ 被选中
    15. WebDriverWait(driver, 10).until(ec.element_selection_state_to_be(element,True )) # element 被选中
    16. WebDriverWait(driver, 10).until(ec.element_located_selection_state_to_be((By.ID, 'SL_1'), False)) # id=’SL_1’不被选中
    17. time.sleep(3)
    18. driver.quit()

    五、什么时候使用等待

    固定等待sleep与隐性等待implicitly_wait尽量少用,它会对测试用例的执行效率有影响。

    显性的等待WebDriverWait可以灵活运用,什么时候需要用到?

    1、页面加载的时候,确认页面元素是否加载成功可以使用WebDriverWait

    2、页面跳转的时候,等待跳转页面的元素出现,需要选一个在跳转前的页面不存在的元素

    3、下拉菜单的时候,如上百度搜索设置的下拉菜单,需要加上个时间断的等待元素可点击

    4、页面刷新的时候

    总之,页面存在改变的时候;页面上本来没的元素,然后再出现的元素

    END今天的分享就到此结束了,点赞关注不迷路~

  • 相关阅读:
    C语言----------#pragma预处理分析
    leetcode-每日一题-1779-找到最近的有相同 X 或 Y 坐标的点(简单,数学思想)
    【总结】两个独立同分布的随机变量相加还是原来的分布吗?
    高级架构师_Elasticsearch_第四章_企业级高可用分布式集群
    2021-09-21如何在PCB上做一个城市地铁图?
    【LeetCode-139】单词拆分(回溯&动归)
    matlab写shpfile文件(字段名改为中文)
    超声波气象站——环境监测领域强大助手
    超市收银系统源码
    Elasticsearch语句—SQL详解
  • 原文地址:https://blog.csdn.net/qq_43371695/article/details/134253582