Selenium WebDriver Tutorial #31 – How to Perform Keyboard Events in Selenium

In this selenium webdriver tutorial we will learn How to Perform Keyboard Events in Selenium WebDriver.

Actions class in Selenium Webdriver provides methods to handle keyboard events in Selenium Automation script. We will learn with example how to perform keyboard actions using Selenium Webdriver Actions class.

Selenium WebDriver Tutorial #32 – Different Types of Wait in Selenium

In this selenium webdriver tutorial we will learn about different types of wait in Selenium WebDriver.

There are three wait types in Selenium WebDriver and we will understand the basic differences between these waits.

✅ Implicit Wait

✅ Explicit Wait

✅ Fluent Wait

Selenium WebDriver Tutorial #33 – What is Implicit Wait in Selenium

In this selenium webdriver tutorial we will learn about What is Implicit Wait in Selenium WebDriver and how to implement implicit wait. When you setup Implicit Wait, it directs WebDriver to wait for the specified time before throwing an exception.

Selenium WebDriver Tutorial #34 – What is Explicit Wait in Selenium

In this selenium webdriver tutorial we will learn about what is Explicit Wait in Selenium WebDriver. Explicit Wait is important in scenarios where some of the web elements take more time to load. Explicit wait is applied for specific elements on page which take more time load or appear.

Selenium WebDriver Tutorial #35 – How to Use Fluent Wait in Selenium

In this selenium webdriver tutorial we will learn How to Use Fluent Wait in Selenium WebDriver. Fluent Wait defines the maximum amount of time for the WebDriver to wait for particular webelement to appear or other conditions to be met. In addition to the timeout it also defines the frequency with which WebDriver will check if the condition is met.