Robot Framework Tutorial #41 – How to do Data Driven Testing using CSV File

In this Robot Framework Tutorial we will understand How to do Data Driven Testing using CSV File.

You can have your data externally stored in CSV file and read it using DataDriver package.

Robot Framework Tutorial #39 – How to use FOR Loop in Robot Framework

In this Robot Framework Tutorial we will understand how to use FOR Loop in robot framework.

Few key points to remember about FOR loop are:

* Loops allow us to iterate over a sequence

* You can use Loops to – Loop through a list of elements, Repeat a single keyword several times, Loop through range of numbers (1-10)

* Loops in Robot Framework begin with “FOR”

* Example:

FOR ${var} IN @{list}

Keyword ${var}

END

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 #35 – Implicit Wait vs Explicit Wait

In this Robot Framework Tutorial we will understand the difference between Selenium Implicit wait and explicit wait.

We will also understand the advantages and disadvantages of using these waits in your Robot framework script.

Robot Framework Tutorial #34 – How to Set Selenium Timeout and Speed

In this Robot Framework Tutorial we will understand how to set Selenium Timeout and Speed in Robot Framework. We will understand keywords available in Robot Selenium library to Selenium execution speed and timeouts.

Some of the keywords that I will explain in this tutorial are:

* Get Selenium Timeout – Gets the timeout that is used by various keywords

* Set Selenium Timeout – Sets the timeout that is used by various keywords

* Get Selenium Speed – Gets the delay that is waited after each Selenium command

* Set Selenium Speed – Sets the delay that is waited after each Selenium command