Selenium 3种等待方式

加入等待时间,主要是考虑到网页加载需要时间,可能由于网速慢,或者使用了 ajax 技术实现了异步加载等,如果程序找不到指定的页面元素,就会导致报错发生。

常用的有3种等待方式:

  1. 强制等待
  2. 隐式等待
  3. 显示等待

强制等待

使用 Python 自身的库 time.sleep() 可以实现强制等待。

强制等待使用简单,但是,当网络条件良好的时候,建议减少使用,因为如果频繁使用强制等待的方式等待元素加载,会导致整个项目的自动化时间延长。

这种等待方式的使用场景主要是脚本调试

隐式等待

隐式等待实际上是,设置了一个最长的等待时间,如果在这段时间内能够定位到目标,则执行下一步操作,否则会一致等到规定时间结束,然后再执行下一步。

隐式等待设置一次,对整个 driver 周期都能够起作用,所以,在最开始设置一次即可

注意:在同一个 driver 周期中遇到强制等待,可能会导致隐式等待失效

# 隐式等待,京东的“新人福利”
from selenium import webdriver
from time import sleep

driver = webdriver.Chrome()  # 打开浏览器
driver.maximize_window()  # 浏览器最大化
driver.get("https://www.jd.com/")  # 跳转至京东
driver.implicitly_wait(10)  # 隐式等待 10s
element = driver.find_element_by_xpath("//*[@class='user_profit_lk']")  # 定位元素
element.click()  # 点击
sleep(3)

driver.quit()  # 关闭浏览器

显式等待

WebDriverWait 是 Selenium 提供的显式等待的模块,使用原理是:在指定的时间范围内,等待到符合/不符合某个条件为止。

导入方式:

from selenium.webdriver.support.wait import WebDriverWait

WebDriverWait 参数:

序号 参数 描述
1 driver 传入的 WebDriverWait 实例
2 timeout 超时时间,等待的最长时间
3 poll_frequency 调用 until 或 until_not 中的方法的间隔时间(默认是0.5秒)
4 ignored_exceptions 忽略的异常

WebDriverWait 模块含有两个方法:

  1. until
  2. until_not

until 与 until_not 的参数:

序号 参数 描述
1 method 在等待期间,每隔一段时间调用这个传入的方法,直到返回值不为 False
2 message 如果超时,抛出 TimeoutException,将 message 传入异常

通常情况下,WebDriverWait 模块会与 expected_conditions 模块搭配使用,用来写入 until 与 until_not 中的参数——method。

expected_conditions 模块有以下等待条件:

序号 等待条件方法 描述
1 title_is(object) 判断标题,是否出现
2 title_contains(object) 判断标题,是否包含某些字符
3 presence_of_element_located(object)–常用 判断某个元素,是否被加到了 dom 树里,并不代表该元素一定可见
4 visibility_of_element_located(object)–常用 判断某个元素,是否被加到了 dom 树里,并且可见,宽和高都大于0
5 visibility_of(object) 判断元素是否可见,如果可见则返回这个元素
6 presence_of_all_elements_located(object) 判断是否至少有1个元素存在 dom 树中
7 visibility_of_any_elements_located(object) 判断是否至少有1个元素在页面中可见
8 text_to_be_present_in_element(object) 判断指定的元素中是否包含了预期的字符串
9 text_to_be_present_in_element_value(object) 判断指定元素的属性值是否包含了预期的字符串
10 frame_to_be_available_and_switch_to_it(object) 判断该 frame 是否可以 切换进去
11 invisibility_of_element_located(object) 判断某个元素是否存在与 dom 树中或不可见
12 element_to_be_clickable(object) 判断某个元素中是否可见,并且是可点击的
13 staleness_of(object) 等待某个元素从 dom 树中删除
14 element_to_be_selected(object) 判断某个元素是否被选中,一般用在下拉列表中
15 element_selection_state_to_be(object) 判断某个元素的选中状态是否符合预期
16 element_located_selection_state_to_be(object) 判断某个元素的选中状态是否符合预期
17 alert_is_present(object) 判断页面上是否出现 alert 弹窗
# 模拟场景:点击京东首页的“新人福利”
from selenium import webdriver
from time import sleep
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC


driver = webdriver.Chrome()  # 打开浏览器
driver.maximize_window()  # 浏览器最大化
driver.get("https://www.jd.com/")  # 跳转至京东
element = WebDriverWait(driver, 20, 0.5).until(
    EC.visibility_of_element_located((By.XPATH, "//*[@class='user_profit_lk']"))
)  # 20秒内,直到元素在页面中可定位

element.click()  # 点击
sleep(3)

driver.quit()

显式等待,虽然使用起来,相比其他等待方式,显得要复杂,但是它的优势在于灵活,通过封装后,通过简单的调用,就可以运用到自动化测试项目中。

总结

Selenium 3种等待方式_第1张图片

你可能感兴趣的:(selenium,软件测试,自动化测试,python)