Ten en cuenta que en las ciencias cualquier problema suele tener diversas soluciones, de igual modo aquí te mostraremos lo más óptimo y eficiente.
Ejemplo 1: mezcla de espera implícita y espera explícita en selenio
As per the official Selenium documentation,
it is suggested not to mix both Implicit waits and Explicit Waits
. Mixing both of them can cause unpredictable wait times.
Implicit wait is defined only once in the code.
It will remain same throughout the driver object instance.
Explicit wait is defined whenever it is necessary in the code.
This wait will call at the time of execution. It is a conditional wait.
Explicit wait will override the implicit wait whereever
explicit wait is applied. So, Explicit Wait gets first preference
then Implicit Wait.
Ejemplo 2: selenio explícito espera
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 asEC
driver = webdriver.Firefox()
driver.get("http://somedomain/url_that_delays_loading")try:
element =WebDriverWait(driver,10).until(EC.presence_of_element_located((By.ID,"myDynamicElement")))finally:
driver.quit()
Tienes la opción de favorecer nuestra publicación exponiendo un comentario o dejando una puntuación te damos las gracias.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)