当前位置:网站首页>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 :
边栏推荐
猜你喜欢
How to see the K-line chart of gold price trend?
NLP fourth paradigm: overview of prompt [pre train, prompt, predict] [Liu Pengfei]
一图看懂!为什么学校教了你Coding但还是不会的原因...
[flask] official tutorial -part1: project layout, application settings, definition and database access
干货!通过软硬件协同设计加速稀疏神经网络
Kubernetes stateless application expansion and contraction capacity
Kotlin basics 1
False breakthroughs in the trend of London Silver
【Flask】官方教程(Tutorial)-part3:blog蓝图、项目可安装化
NLP第四范式:Prompt概述【Pre-train,Prompt(提示),Predict】【刘鹏飞】
随机推荐
Unity VR solves the problem that the handle ray keeps flashing after touching the button of the UI
【Flask】静态文件与模板渲染
dried food! Accelerating sparse neural network through hardware and software co design
剑指 Offer 38. 字符串的排列
【全網最全】 |MySQL EXPLAIN 完全解讀
【详细】快速实现对象映射的几种方式
Paddle框架:PaddleNLP概述【飞桨自然语言处理开发库】
How to see the K-line chart of gold price trend?
Ordinary people end up in Global trade, and a new round of structural opportunities emerge
Unity VR resource flash surface in scene
A Cooperative Approach to Particle Swarm Optimization
c#网页打开winform exe
[detailed] several ways to quickly realize object mapping
【Flask】官方教程(Tutorial)-part1:项目布局、应用程序设置、定义和访问数据库
leetcode-2.回文判断
Force buckle 9 palindromes
Force buckle 1020 Number of enclaves
网易智企逆势进场,游戏工业化有了新可能
Basic operations of databases and tables ----- unique constraints
正则表达式:示例(1)