You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I keep receiving TimeoutException whenever I call WebDriverWait and wait for it to finish.
I already adjusted the WAIT variable to about 2minutes and still the same error
I use Chrome Driver and have my own bought proxies.
for selector in SELECTORS['next']: print("Click Next Button "+selector) time.sleep(WAIT) try: create_input = WebDriverWait(driver, WAIT).until(EC.element_to_be_clickable((By.XPATH, selector))) time.sleep(WAIT) create_input.click() break except Exception as e: print(type(e).__name__) pass
The text was updated successfully, but these errors were encountered:
I keep receiving TimeoutException whenever I call WebDriverWait and wait for it to finish.
I already adjusted the WAIT variable to about 2minutes and still the same error
I use Chrome Driver and have my own bought proxies.
for selector in SELECTORS['next']: print("Click Next Button "+selector) time.sleep(WAIT) try: create_input = WebDriverWait(driver, WAIT).until(EC.element_to_be_clickable((By.XPATH, selector))) time.sleep(WAIT) create_input.click() break except Exception as e: print(type(e).__name__) pass
The text was updated successfully, but these errors were encountered: