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 #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 #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#30- How to Perform Right Click in Selenium

In this selenium webdriver tutorial we will learn How to Perform Right Click in Selenium WebDriver. Performing right click in Selenium is possible by Actions class and method used is contextclick(). We will learn to perform right click anywhere on page or any specific webelement using contextclick().

Selenium WebDriver Tutorial #29 – How to Automate Slider in Selenium

In this selenium webdriver tutorial we will learn how to automate slider in Selenium WebDriver. Handling sliders in Selenium is possible by Actions class and we will learn step by step how to handle these sliders in any selenium automation script.