Make Selenium wait 10 seconds

Question:

Yes I know the question has been asked quite often but I still don’t get it. I want to make Selenium wait, no matter what. I tried these methods

driver.set_page_load_timeout(30)
driver.implicitly_wait(90)
WebDriverWait(driver, 10)
driver.set_script_timeout(30)

and other things but it does not work. I need selenium to wait 10 seconds. NO not until some element is loaded or whatever, just wait 10 seconds. I know there is this

try:
   element_present = EC.presence_of_element_located((By.ID, 'whatever'))
   WebDriverWait(driver, timeout).until(element_present)
except TimeoutException:
    print "Timed out waiting for page to load"

I do not want that.

If waiting for some seconds is to much (not achievable) for selenium, what other (python) library’s/programs would be capable to achieve this task? With Javas Selenium it does not seem to be a problem…

Asked By: hansTheFranz

||

Answers:

All the APIs you have mentioned is basically a timeout, so it’s gonna wait until either some event happens or maximum time reached.

set_page_load_timeout – Sets the amount of time to wait for a page load to complete before throwing an error. If the timeout is negative, page loads can be indefinite.

implicitly_wait – Specifies the amount of time the driver should wait when searching for an element if it is not immediately present.

set_script_timeout – Sets the amount of time to wait for an asynchronous script to finish execution before throwing an error. If the timeout is negative, then the script will be allowed to run indefinitely.

For more information please visit this page. (documention is for JAVA binding, but functionality should be same for all the bindings)

So, if you want to wait selenium (or any script) 10 seconds, or whatever time. Then the best thing is to put that thread to sleep.

In python it would be

import time 
time.sleep(10)

The simplest way to do this in Java is using

try {
    Thread.sleep(10*1000);
} catch (InterruptedException e) {
    e.printStackTrace();
}
Answered By: Gaurang Shah
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.