Answer the question
In order to leave comments, you need to log in
How to get rid of timeouts?
Using selenium, I simulate a click on an element like this:
import time
from selenium import webdriver
driver = webdriver.Chrome('/home/qwe/chromedriver')
driver.get('https://www.avito.ru/saransk/kvartiry/1-k_kvartira_47_m_25_et._1610295577'); # действие 1
time.sleep(1)
hide_phone_el = driver.find_element_by_css_selector('a.item-phone-button_hide-phone') # действие 2
hide_phone_el.click()
time.sleep(1)
print('the end')
Answer the question
In order to leave comments, you need to log in
Only after. But not always, because selenium is full of magic. Use explicit waits , this is the best way.
The next line can be executed, but if there is no element in it, then there will be an exception.
Asynchronous page loads, unpredictable DOM changes?
I think for this you need to use methods like wait until element is visible, do checks is present, is displayed etc.
In practice, there was such a thing, with very complex and inconsistent behavior. Use up to try / except, catching exceptions and tweaking behavior.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question