当前位置:网站首页>Selenium waiting mode
Selenium waiting mode
2022-07-06 01:38:00 【Live up to your youth】
summary
stay selenium in , Waiting refers to waiting for the completion of the previous task before executing the next task , Before the previous task is completed , The latter task will always be in a blocking state , It is somewhat similar to transactions in a database . such as , Before locating the element, you need to load DOM.selenium There are three ways to wait : According to wait 、 An implicit wait 、 Smooth waiting .
The way
According to wait
WebDriverWait(driver, timeout).until(method, message)
Show waiting is selenium The imperative process language that customers can use . They allow your code to pause program execution , Or freeze threads , Until the conditions for passing are met . This condition will always be called at a certain frequency , Until the waiting times out . This means that as long as the condition returns a false value , It will keep trying and waiting . This method is also the most commonly used method .
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions
driver = webdriver.Chrome()
driver.get("http://www.example.com")
# Set implicit wait
# locator It can be tuples (), aggregate {}, Tabular form
# function presence_of_element_located Indicates the DOM Whether there is an element on
# If html There is no label in p The elements of , Then wait for three seconds and throw an exception
WebDriverWait(driver, timeout=3).until(expected_conditions.presence_of_element_located({By.TAG_NAME, "p"}))
# If html There are tags in p The elements of , Then find this element
element = driver.find_element(By.TAG_NAME, "p")
An implicit wait
driver.implicitly_wait(time_to_wait)
An implicit wait ,WebDriver Poll for a certain amount of time when trying to find any element DOM. If the element doesn't exist , An exception will be thrown after the set time . It is useful when some elements on a web page are not immediately available and take some time to load .
Implicit waiting is telling WebDriver If you poll for one or more elements that are not immediately available DOM A span . The default setting is 0, Disable . Once set up , Implicit waiting is set as the life cycle of the session . in other words , After setting the implicit wait , When performing any operation, such as finding elements , There is a certain time limit , If it goes beyond that time , Will throw an exception .
from selenium import webdriver
from selenium.webdriver.common.by import By
driver = webdriver.Chrome()
# Set implicit wait , The waiting time is 5 second
driver.implicitly_wait(5)
# After setting the implicit wait , If 5 The target is not obtained within seconds DOM, Throw an exception
driver.get("http://www.example.com")
# After setting the implicit wait , If 5 No element was obtained within seconds a, Throw an exception
element = driver.find_element(By.TAG_NAME, "a")
Smooth waiting
WebDriverWait(driver, timeout, poll_frequency, ignored_exceptions).until(method, message)
The fluent wait instance defines the maximum amount of time for the wait condition , And the frequency of the inspection conditions . Users can configure waiting to ignore specific types of exceptions when waiting , For example, when searching for elements on the page NoSuchElementException.
from selenium import webdriver
from selenium.common import ElementNotVisibleException, ElementNotSelectableException
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions
driver = webdriver.Chrome()
driver.get("http://www.example.com")
# Set smooth waiting
# The timeout is 10 second , every other 1 Seconds to check whether ElementNotVisibleException,ElementNotSelectableException These two exceptions , If these two exceptions occur , Ignore it
wait = WebDriverWait(driver, timeout=10, poll_frequency=1, ignored_exceptions=[ElementNotVisibleException,
ElementNotSelectableException])
wait.until(expected_conditions.element_to_be_clickable((By.TAG_NAME, "h")))
element = driver.find_element(By.TAG_NAME, "p")
Because it must be synchronized DOM And instructions are quite common , So most clients also come with a set of predefined waiting conditions . seeing the name of a thing one thinks of its function , They are predefined conditions for frequent wait operations . Here are some optional Waiting conditions :
边栏推荐
- Redis-列表
- A glimpse of spir-v
- Open source | Ctrip ticket BDD UI testing framework flybirds
- How does Huawei enable debug and how to make an image port
- [flask] official tutorial -part1: project layout, application settings, definition and database access
- Code Review关注点
- Leetcode skimming questions_ Verify palindrome string II
- 2022年广西自治区中职组“网络空间安全”赛题及赛题解析(超详细)
- internship:项目代码所涉及陌生注解及其作用
- MCU lightweight system core
猜你喜欢
Basic operations of databases and tables ----- primary key constraints
[flask] official tutorial -part2: Blueprint - view, template, static file
Basic operations of databases and tables ----- default constraints
Alibaba canal usage details (pit draining version)_ MySQL and ES data synchronization
[flask] official tutorial -part3: blog blueprint, project installability
Folio. Ink is a free, fast and easy-to-use image sharing tool
Cookie concept, basic use, principle, details and Chinese transmission
A Cooperative Approach to Particle Swarm Optimization
Kotlin basics 1
TrueType字体文件提取关键信息
随机推荐
Initialize MySQL database when docker container starts
Une image! Pourquoi l'école t'a - t - elle appris à coder, mais pourquoi pas...
leetcode3、实现 strStr()
selenium 元素定位(2)
竞价推广流程
伦敦银走势中的假突破
【Flask】官方教程(Tutorial)-part2:蓝图-视图、模板、静态文件
[understanding of opportunity-39]: Guiguzi - Chapter 5 flying clamp - warning 2: there are six types of praise. Be careful to enjoy praise as fish enjoy bait.
Mathematical modeling learning from scratch (2): Tools
一圖看懂!為什麼學校教了你Coding但還是不會的原因...
[flask] response, session and message flashing
正则表达式:示例(1)
A glimpse of spir-v
Huawei Hrbrid interface and VLAN division based on IP
Unity | two ways to realize facial drive
Internship: unfamiliar annotations involved in the project code and their functions
Unity VR solves the problem that the handle ray keeps flashing after touching the button of the UI
LeetCode 322. Change exchange (dynamic planning)
Alibaba-Canal使用详解(排坑版)_MySQL与ES数据同步
Accelerating spark data access with alluxio in kubernetes