本文从含义,例子,和疑点解析三个方面介绍expected_conditions的用法,避免在编程过程中踩坑不断。
1、概念介绍
使用WebDriverWait和expected_conditions两个类来实现等待在网页自动化过程中的某个事件的发生,再执行下一个操作。这种用法称为显示等待。
2、事件详解
• presence_of_element_located
• title_is
• title_contains
• visibility_of_element_located
• visibility_of
• presence_of_all_elements_located
• text_to_be_present_in_element
• text_to_be_present_in_element_value
• frame_to_be_available_and_switch_to_it
• invisibility_of_element_located
• element_to_be_clickable
• staleness_of
• element_to_be_selected
• element_located_to_be_selected
• element_selection_state_to_be
• element_located_selection_state_to_be
• alert_is_present
Selenium 的 expected_conditions 模块提供了一组条件,用于等待直到满足特定条件后再执行下一步操作。以下是一些常见的 expected_conditions 用法、含义和例子:
presence_of_element_located(元素出现):
含义:等待直到页面上至少存在一个具有指定定位器的元素。
例子:
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
element = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.ID, "element_id"))
)
title_is(title)
含义:等待直到页面的标题等于给定的标题。
例子:
版权归原作者 小蟒天天向上 所有, 如有侵权,请联系我们删除。