Robot Framework Tutorial #37 – How to use Explicit Wait

In this Robot Framework Tutorial we will understand how to use explicit wait in robot framework.

We will understand in detail the following keywords for implementing explicit wait in robot framework automation.

* Wait Until Page Contains – Waits until text appears on the current page

* Wait Until Page Contains Element – Waits until the element locator appears on the current page

* Wait Until Page Does Not Contain – Waits until text disappears from the current page

* Wait Until Page Does Not Contain Element – Waits until the element locator disappears from the current page

* Wait Until Location Is – Waits until the current URL is expected

* Wait Until Location Is Not – Waits until the current URL is not location

* Wait Until Location Contains – Waits until the current URL contains expected

* Wait Until Location Does Not Contain – Waits until the current URL does not contains location

* Wait Until Element Contains – Waits until the element locator contains text

* Wait Until Element Does Not Contain – Waits until the element locator does not contain text

* Wait Until Element Is Enabled – Waits until the element locator is enabled

* Wait Until Element Is Not Visible – Waits until the element locator is not visible

* Wait Until Element Is Visible – Waits until the element locator is visible

Robot Framework Tutorial #21 – Refactor Selenium Webelement Locators

In this Robot Framework Tutorial we will understand how to refactor selenium webelement locators and organise your robot framework project so that it is more maintainable and manageable.

Watch the full robot framework tutorial series to master robot framework automation.

Robot Framework Tutorial #20 – Pass Variables from Command Line

In this robot framework tutorial we will learn how to pass variables from command line and run robot framework test case from command line

Passing variables from command line gives you flexibility to provide different configuration values from command without changing the test scripts.

Robot Framework Tutorial #18 – Variable Scope in Robot Framework

In this robot framework tutorial we will learn about variable scope in robot framework.

Depending on where and how the variables are created, they can have a global, test suite, test case or local scope.

Robot Framework Tutorial #17 – Dictionary Variable in Robot Framework

In this robot framework tutorial we will learn how to declare and use dictionary variables in robot framework.

We will understand dictionary variable usage along with examples.