Selenium WebDriver Tutorial #41 -How to Read Data From Properties File

In this selenium webdriver tutorial we will learn how to read data from properties file in selenium webdriver. When you are using selenium with Java. Java provide a properties class which is utilized to read and write data from properties file. In this tutorial we will understand the step by step process to read and write data in the property file.

Selenium WebDriver Tutorial #40 – How to Handle Authentication Popup in Selenium

In this selenium webdriver tutorial we will learn how to handle authentication popup in selenium webdriver. Many times you are required to enter the username and password in order to access the application you are testing in your organization. Handling it in selenium is very simple and we will learn this step by step in this tutorial.

Selenium WebDriver Tutorial #39 – How to Handle SSL Certificate in Selenium

In this selenium webdriver tutorial we will learn how to handle ssl certificate in selenium webdriver. Many times when you are testing your web application, you might have came across ssl certificate errors for your webportal. Selenium webdriver provides functionality to handle these certificates very easily, follow complete tutorial to understand the whole setup process.

Selenium WebDriver Tutorial #36 – How to Handle Web Table in Selenium

In this selenium webdriver tutorial we will learn How to Handle Web Table in Selenium WebDriver. Handling web table in selenium webdriver is very simple and straight forward. You simply need to identify the locators of webtables rows and columns and use nested for loops to iterate through the rows and columns to get the table content. This video tutorial will explain these concepts in detail and simplified manner.

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.