Selenium WebDriver installation process is completed in four basic steps: 1. Download and Install Java We assume that you have already installed Java 8 or above on your machine and successfully configured the environment variables required to run and compile ...

You might have come across wait commands while writing your first Selenium program. In this article, you would be learning about what exactly Selenium Waits is. You would be covering various types and other necessary factors one needs to understand ...

Selenium Grid is a feature in Selenium that allows you to run test cases in different machines across different platforms. The control of triggering the test cases is on the local machine, and when the test cases are triggered, they ...

Assertion determines the state of the application whether it is the same what we are expecting or not. If the assertion fails, then the test case is failed and stops the execution. To use the Assertion in Web Driver, you ...

In this section, you will learn how to handle checkbox in selenium webdriver. Let’s create a test case in which we will automate the following scenarios: Invoke a Google chrome browser. Navigate to the website in which you handle the ...

In this section, you will learn how to handle radio buttons in selenium web driver. Following are the steps to handle the radio buttons: Step 1: Invoke the Google Chrome browser. The code to invoke a Google chrome browser is ...

Before proceeding with this section, first we should know the basic terminology related to web elements in WebDriver. What is Web Element? The term web element refers to a HTML element. The HTML documents are composed of HTML elements. It ...

WebDriver provides some basic Browser Navigation Commands that allows the browser to move backwards or forwards in the browser’s history. Just like the browser methods provided by WebDriver, we can also access the navigation methods provided by WebDriver by typing ...

The very basic browser operations of WebDriver include opening a browser; perform few tasks and then closing the browser. Given are some of the most commonly used Browser commands for Selenium WebDriver. Get Command Method: In WebDriver, this method loads ...

In this section, you will learn how to scroll down or up in order to display additional information present on the web page. Let us consider a test case in which we will automate the following scenarios: Invoke Firefox browser ...