Selenium WebDriver Wait Commands

Listing out the different WebDriver Wait statements that can be useful for an effective scripting and can avoid using the Thread.sleep() commands.

To learn advance waits you can go to Advance Selenium Wait and Handle Ajax Waits in Selenium.

ImplicitlyWait Command

Purpose: Selenium WebDriver has borrowed the idea of implicit waits from Watir. This means that we can tell Selenium that we would like it to wait for a certain amount of time before throwing an exception that it cannot find the element on the page. We should note that implicit waits will be in place for the entire time the browser is open. This means that any search for elements on the page could take the time the implicit wait is set for.

 

FluentWait Command

Purpose: Each FluentWait instance defines the maximum amount of time to wait for a condition, as well as the frequency with which to check the condition. Furthermore, the user may configure the wait to ignore specific types of exceptions whilst waiting, such as NoSuchElementExceptions when searching for an element on the page.

 

ExpectedConditions Command

Purpose: Models a condition that might reasonably be expected to eventually evaluate to something that is neither null nor false.

 

PageLoadTimeout Command

Purpose: 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.

 

SetScriptTimeout Command

Purpose: 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.

 

Sleep Command

Purpose: This is rarely used, as it always force the browser to wait for a specific time. Thread. Sleep is never a good idea and that’s why Selenium provides wait for primitives. If you use them you can specify much higher timeout value which makes tests more reliable without slowing them down as the condition can be evaluated as often as it’s required.

 

Practice Exercise

1) Launch new Browser

2) Open URL “https://original.toolsqa.com/automation-practice-switch-windows/”

3) Click on the Button “Timing Alert”

4) Accept the Alert (Alert will take 3 seconds to get displayed, Use WebDriverWait to wait for it)

Solution

 

navigate-left-iconnavigate-right-icon