码迷,mamicode.com
首页 > 编程语言 > 详细

selenium3+python自动化15-三种等待方式

时间:2020-03-26 10:50:22      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:导入   tomat   模块   implicit   author   row   time模块   str   selection   

前言

在使用selenium自动化测试的过程中,必然会遇到环境不稳定,网络慢的情况,这时如果不做任何处理的话,经常会因代码没有找到元素而报错。这时我们就要进行设置,让其等待加载后再执行。

在Selenium中,可以用到三种等待方式:强制等待、隐式等待、显式等待,应该根据具体需求情况选择最优的等待方式。

一、强制等待:time.sleep(等待时间)

1.不管浏览器是否加载完了,程序都得等待设定的时间后才能运行

2.注意使用的时候需要先导入time模块:import time

3.这种方式的缺陷显而易见,过于死板,严重影响程序执行速度。但在脚本调试过程时,还是可以使用的,设置起来方便快捷

 1 from selenium import webdriver
 2 import time
 3  
 4 # 会开会话
 5 driver = webdriver.Chrome()
 6 driver.get(http://www.baidu.com)
 7  
 8 # 强制等待3秒
 9 time.sleep(3)
10 
11 print(driver.current_url)

二、隐式等待:driver.implicitly_wait(等待时间)

1.隐形等待实际是设置了一个最长等待时间,如果在规定时间内网页加载完成,则执行下一步,否则一直等到时间截止,然后执行下一步。

2.隐式等待只需要声明一次,一般在打开浏览器后进行声明。声明之后对整个drvier的生命周期都有效,后面不用重复声明。

3.这里有一个弊端,即程序会一直等待整个页面加载完成才执行。我们的程序往往只需要几个特定的模块加载完就好,然而程序仍需要等到其他所有模块以及大量的js加载完后才能执行,还是等待了多余的时间。

 1 from selenium import webdriver
 2  
 3 # 会开会话
 4 driver = webdriver.Chrome()
 5  
 6 # 隐性等待,最长等待30秒
 7 driver.implicitly_wait(30)
 8 driver.get(http://www.baidu.com)
 9  
10 print(driver.current_url)
三、显式等待:WebDriverWait
1.不同于隐式等待,显示等待是等待需要加载的元素加载完,就会继续执行后面的语句
2.显示等待需要导入3个包:
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By

3.WebDriverWait,配合该类的until()和until_not()方法,就能够根据判断条件而进行灵活地等待了.它主要的意思就是:程序每隔x秒看一眼,如果条件成立了,则执行下一步,否则继续等待,直到超过设置的最长时间,然后抛出TimeoutException

 1 from selenium import webdriver
 2 from selenium.webdriver.support.wait import WebDriverWait
 3 from selenium.webdriver.support import expected_conditions as EC
 4 from selenium.webdriver.common.by import By
 5  
 6 # 会开会话
 7 driver = webdriver.Chrome()
 8 driver.get(http://www.baidu.com)
 9  
10 driver.find_element_by_id(kw).send_keys(selenium)
11 driver.find_element_by_id(su).click()
12  
13 # 显性等待
14 WebDriverWait(driver,20).until(EC.visibility_of_element_located((By.XPATH,//a[text()=" - Web Browser Automation"])))
15 driver.find_element_by_xpath(//a[text()=" - Web Browser Automation"]).click()
16  
17 print(driver.current_url)
18 driver.quit()

4.最长的等待时间取决于两者之间的大者,此例中为20,如果隐性等待时间>显性等待时间,则该句代码的最长等待时间等于隐性等待时间

四、expected_conditions的判断条件

1.在显性等待中用到的expected_conditions(下面简称EC)这个类中的方法,接下来将EC的判断条件总结:

  • title_is(title)
    title_contains(title)
    这两个条件验证传入的参数title是否等于或包含于driver.title

  • presence_of_element_located(locator)
    presence_of_all_elements_located(locator)
    这两个条件验证元素是否出现,传入的参数都是元组类型的locator,如(By.ID, ‘kw‘)
    前者只需任意一个;后者需所有符合条件的元素

  • visibility_of_element_located(locator)
    invisibility_of_element_located(locator)
    visibility_of(element)
    这三个条件验证元素是否可见,一、三验证可见,二验证不可见
    前两个传入的是locator,最后一个直接传定位到的element就行

  • text_to_be_present_in_element(locator, text_)
    text_to_be_present_in_element_value(locator, text_)
    这两个条件判断某段文本是否出现在某元素中,前者判断元素的text,后者判断元素的value

  • frame_to_be_available_and_switch_to_it(locator)
    这个条件判断frame是否可切入,可传入locator元组或者直接传入定位方式:id、name、index或WebElement

  • alert_is_present()
    这个条件判断是否有alert出现

  • element_to_be_clickable(locator)
    这个条件判断元素是否可点击

  • element_to_be_selected(element)
    element_located_to_be_selected(locator)
    element_selection_state_to_be(element, is_selected)
    element_located_selection_state_to_be(locator, is_selected)
    这四个条件判断元素是否被选中,前两者判断选中;后两者判断传入的状态

  • staleness_of(element)
    最后一个条件判断一个元素是否仍在DOM中,可以判断页面是否刷新了

参考博客:https://www.jianshu.com/p/fb1a514422e2 https://blog.csdn.net/qq_38741986/article/details/91348845

selenium3+python自动化15-三种等待方式

标签:导入   tomat   模块   implicit   author   row   time模块   str   selection   

原文地址:https://www.cnblogs.com/xiaobeibi/p/12572590.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!