Which selenium.webdriver.support.expected_conditions
are better to use when waiting for the invisibility of an element?
In my case, I input data into a form, click save and wait for a loader to disappear
from selenium.webdriver.support import expected_conditions as EC
wait = WebDriverWait(driver, 10)
wait.until(EC.presence_of_element_located((SelectBy.CSS_SELECTOR, ".spinner")))
debug("loader appeared")
wait.until(EC.invisibility_of_element_located((SelectBy.CSS_SELECTOR, ".spinner")))
debug("loader disappeared")
In the output, I see that the second wait is executed for 20 seconds (my global implicit wait is 20 seconds)
360ms ? [debug] loader appeared
21s 141ms ? [debug] loader disappeared
The locator is good, I am trying to understand what is wrong with the wait.
Did anyone have similar problems? I would be happy for any suggestions.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…