Complete Java Selenium Testing Tutorial: Guide To The Java Automation

Shalini Baskaran

Posted On: June 24, 2020

view count61558 Views

Read time20 Min Read

Most companies measure the success of their digital marketing efforts using traditional approaches such as increased sales, ROI, and leads. However, keeping in mind the importance of the customer experience, companies have started to measure the vital metrics of user experience like click-throughs, conversion rates, time spent on site, DAU (Daily Active Users), MAU (Monthly Active Users), etc.

As per a Walker report, customer experience will have more weightage in 2020 than both price & product, as 86% of consumers will pay more for a better user experience. However, customer experience has fast become a top priority for businesses, and 2022 will be no different.

unnamed (7)

Source

Cross browser testing plays a pivotal role in providing a seamless user experience across different browsers, platforms, and devices. But what happens if your registration form starts failing in Safari or Mozilla Firefox or Internet Explorer? Companies are relying on cross browser compatibility testing to test their web applications on different browsers and browser versions, else there is a high probability of losing customers!

In this Selenium Java testing tutorial, you will see how to run your first script for browser automation with Selenium and Java programming language.

If you’re new to Selenium and wondering what it is then we recommend checking out our guide – What is Selenium?

What Is Selenium?

Selenium is the most popular web browser automation framework. It is used by software developers and testers to test the functionality of a website across multiple browsers.

This Selenium Java testing tutorial will take you through what is Selenium, how it works, and deep dive into how to use it to automate your website (or web apps) using the Java programming language.

It has four major components designed for different purposes, and the selection of these components depends upon the testing requirement. The four components are

Browser automation with Selenium

Source:What is selenium?

If you want to perform browser automation on different browsers such as Chrome, Firefox, Edge, Internet Explorer, etc., Selenium WebDriver is an ideal choice.


What Is Selenium WebDriver

Selenium WebDriver is a browser-specific driver that provides an interface to write and execute the browser automation scripts for testing web applications. It binds with any popular programming language via browser-specific drivers, thereby providing the ideal environment for realizing automated testing. It supports most browsers through the corresponding browser-specific drivers. Selenium can also be integrated with language-supported frameworks via browser-specific drivers.

Automated tests using Selenium WebDriver can also be used to expedite the testing and release processes by integrating with top CI/CD tools like Jenkins, TeamCity, GitLab CI, and more.

Prerequisites for cross browser automation with Selenium and Java

To perform cross browser Selenium Java testing, you must ensure that the below prerequisites are met.

Java

Step 1: Depending on the operating system (Mac, Windows, or Linux), download JDK with JRE (32 or 64 bit) and then install it.

Step 2: Create a new environment variable JAVA_HOME and define the value to JDK installation location in the system.

To create the environment variable, please navigate as shown below:

Right-click “This PC”–> Properties –>Advanced system settings –> Environment variables –> System Variables –> Add a variable JAVA_HOME with the path of the JDK installation folder.

For Example, JAVA_HOME → C:\Program Files\Java\jdk-9

Step 3: Update the path to the bin folder of the JDK installation folder. In the path variable of the System variables, add the value %JAVA_HOME%\bin.

Step 4: Verify the successful installation of Java in your system by using the following command in the command prompt:

java --version

IDE(Integrated Development Environment)

Download the latest version of any IDE depending upon your Operating System (32 or 64 bit) and install it in your system for Selenium Java testing automation. For example, you can download Eclipse or download IntelliJ as they are one of the preferred IDE’s.

Drivers

There are different types of drivers, each supporting a specific browser. You can download them from the official Selenium website.

You can also find a documentation page in each driver section to understand the compatibility of the driver and the browser version. For example, below is the compatibility of the Gecko driver with the required version of Selenium and Firefox.

unnamed

Source

Are you looking to take your Java development skills to the next level? Are you interested in earning a test automation certification that will help in accelerating your testing career? Well, LambdaTest offers Selenium Java 101 test automation certification through which developers can boost their Selenium Java testing skills.

Here’s a short glimpse of the Selenium Java 101 certification offered by LambdaTest:

How To Configure Selenium WebDriver With Eclipse?

Creating the first project for cross browser automation with Selenium and Java and completing it successfully would require a lot of patience. However, the below steps would assist in taking a step forward.

In this Selenium Java testing tutorial, you will see how to create your project either as a Java or a Maven project.

Creating a Java project in Eclipse IDE

Step 1: Launch the Eclipse IDE.

Step 2: Go to File → New → Project. Specify the name of the project and click Finish.

selenium-java-tutorial

Step 3:Create a package and a class file within the same package. Select the modifier as public and click Finish.

Selenium & Java tutorial

Step 4: To add the referenced libraries, right-click on the project🡪Build Path 🡪Configure Build Path and add the external jars.

automation with<a href= Selenium and Java” width=”733″ height=”477″ class=”aligncenter size-full wp-image-12553″ />

Before we get our hands dirty with Selenium Java testing automation, let’s look at how to instantiate the intended web browser. Here is how you can instantiate Chrome browser in a Selenium WebDriver project:

  • For Chrome Browser
  • For Firefox Browser

or the browser driver that is inline with the browser on which Selenium automation tests have to be performed.

WebDriver is basically an interface. A WebDriver instance is created and cast to the browser driver class. The Selenium WebDriver class offers methods like get(), quit(), close(), etc. that are used for specific purposes.

Consider an example for testing login functionality in a single browser. To test this, we need the correct URL of the website and the valid login credentials of a registered user.

First, we have to specify the driver’s path and then instantiate the appropriate browser for that driver.

For Firefox

For Chrome

For Edge

For Opera

For Internet Explorer

Selenium also provides the advantage of running the cross browser automation tests in a web application without a GUI. Such a browser is called a headless browser, and the testing carried out in such a browser is called Headless browser testing.

Since the browser GUI is not shown during the test process, you can expect exceptional performance and blazing-fast speed. HtmlUnit driver and headless options of Chrome, Firefox, etc. are some of the examples to carry out headless browser testing.

After instantiating the driver, we need to navigate to the website.

Assert if the current page title does not match with the desired title.

To test the login functionality, the first step is to locate the desired WebElements in Selenium on which we need to perform interactions. Once you know how to access a web element, you can easily perform any browser actions using them.

Below are the eight different Selenium locators that the WebDriver supports to locate elements:

  • id
  • name
  • className
  • tagName
  • linkText
  • partialLinkText
  • cssSelector
  • xpath

Let us use the id locator to locate the elements. The basic requirement for this test would be the user should be allowed to enter his username and password and click the Login button.

Once the tests for Selenium Java testing automation are executed, you need to close the browser instance, which is considered the best practice in finishing the test execution.

You can close the browser by using two different WebDriver commands, these are:

  • close(): Closes the current browser window.
  • quit(): Quit all the instantiated browser instances.

Below is the code snippet for testing the login functionality in a single browser for cross browser Selenium automation testing.

Below is the code snippet for testing the login functionality in a single browser for browser automation with Selenium & Java.

Here’s your free opportunity for automated browser testing.

Creating A Maven Project In Eclipse

The primary advantage of having a Maven project is that we get all our dependencies (JARS) added automatically, allowing users to reuse the same jars across multiple projects.

In addition, Maven automatically downloads the necessary files from the repository when building the project. You can also refer to our Maven tutorial to learn how to use Maven for Selenium automation testing.

Step1: Download Maven

Step2: Add MAVEN_HOME system variable

MAVEN_HOME system

Set the path which points to the bin directory of the maven directory.

Selenium & Java tutorial

Step 3 : To verify successful installation of Maven, type mvn –version in command prompt.

We can use the same code as in the Java testing Project example. The necessary dependencies are added in pom.xml, thereby avoiding the need to manually add jar files in the project.

Running your first test script for cross browser automation with Selenium and Java

In this section of the Selenium Java testing Tutorial, I will run a test script and perform automated browser Java testing on Firefox, Chrome, and Opera browsers to test the website’s login feature on these browsers.

In case you’re not familiar with cross browser testing, I will explain in the section below:

Overview Of Cross Browser Testing

Since each browser has its own rendering engine, there is a high probability that the web page might render differently on various web browsers. This is because the web elements in your web page might not be compatible with the said browsers. This is why you need to perform cross browser testing to make sure that your website is compatible with the desired web browsers.

Cross browser testing involves testing the web application in multiple browsers like testing on Chrome browser and other browsers like Firefox, Microsoft Edge, Internet Explorer, Opera, etc.

Need For Cross Browser Testing

Availability of different browsers, devices, and platforms has increased the need for cross browser testing. The purpose of cross browser testing is to provide a consistent behavior and experience across all browsers, devices, and platforms. Some of the most common areas addressing cross browser compatibility issues are:

  1. Image orientation
  2. Font size mismatch
  3. JavaScript implementation might differ in different browsers
  4. Page alignment
  5. CSS styles can render differently while testing website on IE 8 than in more recent versions of Internet Explorer and Google Chrome
  6. Minimal (or no) support for HTML5

Thus the goal of cross browser testing is to ensure your users are able to access all content and execute all of the basic functions on your website without any major issues.

Implementing Cross Browser Testing in Selenium WebDriver

Cross browser testing can be performed by integrating the TestNG framework with Selenium WebDriver. Let us try to use the same application to check the login functionality in various browsers. If you are new to the TestNG framework, you can go through the TestNG tutorial to get started with the framework.

Integrating TestNG with WebDriver

Step 1: Go to Help –> Install Software.

Step 2: Click Add and enter the below link in the location field.

Step 3: Click Add

TestNG with WebDriver

Step 4: Select TestNG and click Next

Select TestNG and click Next

Step 5: Click Next.

Browser automation with Selenium & Java

Step 6: Accept the terms of the license agreement and click Finish.

Browser automation with Selenium & Java

Sometimes you may get a security warning while installing. Click Install anyway.

Selenium & Java tutorial

Step 7: Restart the eclipse to complete the installation.

Read – A Complete Guide For Your First TestNG Automation Script

Running the test script for cross browser automation with Selenium and Java

Consider the test scenario where a user wants to login to a website in multiple browsers and ensure that the webpage implementation and styles are the same across all the browsers.

In the below code, we perform the cross browser testing in Firefox, Chrome, and Opera browsers.

To execute the test case in different browsers, we need to create an XML file that configures the suite and runs them. This file allows you to configure the tests, set the priority, list the dependency of tests, include or exclude any class, method, or tests, perform parallel testing, parameterize the values by using the annotation @Paramters, etc.

As per requirements, we have to parameterize the value of different browsers used for automated browser Java testing.

Please follow the below steps to create a TestNG.xml file:

Step 1: Right your project → New → File

Step 2: Add the name of the file to be used and click Finish.

Right-click the TestNG.xml file and select Run As →TestNG suite

Test Execution Of Browser

Common exceptions in cross browser automation testing

Exceptions are events that cause the Java program to end abruptly without giving the expected output. Below are the most common exceptions that occur when executing tests in Selenium WebDriver.

1. org.openqa.selenium.NoSuchElementException

NoSuchElementException occurs when the Selenium WebDriver can’t locate an element.

2.java.lang.IllegalStateException: The driver executable does not exist:

This exception occurs when the driver is not found in the specified path

3. org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000ms

This is due to the version incompatibility of the browser and the Selenium. Check the compatibility of the browser and the driver on the download page of the driver.

4. org.openqa.selenium.StaleElementReferenceException

This exception might occur when a web element is no longer present on the web page. To overcome this exception, users can use dynamic XPath instead of a static XPath.

Watch this video to learn how to handle Stale Element Reference Exceptions in Selenium with Java.

Performing parallel testing on local Selenium Grid

In this section of the Selenium Java testing tutorial, we deep dive into performing parallel testing on a local Selenium Grid. When performing cross browser automation with Selenium and Java, you might want to run your test script against several browsers & OS combinations. This is why running your test sequentially might turn out to be time-consuming and a non-scalable process.

Let’s say you want to run cross browser tests on 50 browsers & OS combinations Also, each test script takes about 100 seconds to run a test script. If you run these tests sequentially you’ll take a total of 5000 seconds to run these tests. This is essentially around 1 hour 23 min. That’s a lot of time! Don’t you think so?

But if you run tests in parallel, let’s say you run five parallel sessions, where you run five tests simultaneously. Total time would come down to 1000 seconds, i.e., 16 mins approx. So you end up saving more than an hour of your time.

Performing Parallel Testing

Source: https://www.lambdatest.com/selenium

Parallel testing in Selenium is realized using a Selenium Grid. Selenium Grid routes test commands to browser instances on remote machines (that match the desired test combination). Here are the two main components of the Selenium Grid:

  • Hub (server): The WebDriver client gives the access request to the Hub
  • Node (remote device): Node is the Selenium WebDriver instance on remote machines. The Hub passes the test execution request to the Node that is a best match of the test combination (in terms of browser, browser version, and operating system).

The WebDriver client performs test execution on a remote system through remoteWebDriver. RemoteWebDriver has two important components – the Client and the Server. Along with the Selenium Hub URL, the desired browser capabilities are also passed to the method that initiates the instantiation of a Remote WebDriver.

Read – Speed Up Automated Parallel Testing In Selenium With TestNG

Performing parallel testing on LambdaTest Selenium Grid

It is always a good practice to run tests in parallel on an online Selenium Grid to speed up the overall execution time of your Selenium Java testing automation. For example, suppose you have an extensive number of tests or those take more time to execute. In that case, using Selenium WebDriver with Java or any other language might compel you to use parallel testing for speeding up the tests and achieving the best possible results.

LambdaTest is a powerful cloud-based cross browser testing platform that helps you execute cross browser test scenarios in multiple online browsers simultaneously. LambdaTest allows developers to test web apps for cross browser compatibility across 2000+ different browsers, OS, resolutions, devices, etc.

To get started, you need to create an account on LambdaTest using your email address. Once you sign up on LambdaTest, you will be provided a unique username and an accesskey located at your LambdaTest profile section. Then, the browser capabilities can be generated using the LambdaTest capabilities generator, as shown below.

TestNG.xml

Once the Selenium Java testing automation is completed, you can view the results in the LambdaTest Automation tab. Here you can see the complete information about the browser automation tests. You can find the browser information which was used for testing and the time taken for the test execution.

The most interesting part of LambaTest Grid is that it provides an option of video recording of the test execution. You can play the video to know how the browser was automated and what has caused the error in case of any failed test.

Note: Experience reliable automated testing with Selenium Testing Tool on a cloud grid of 3000+ browsers and operating systems.

Cross browser automation test results in Automation Tab

The timeline tab shows the number of builds recorded. You can toggle Test View from Build View to see the list of executed tests. LambdaTest provides an option to filter the tests/Build based on the date,users,build name and the status.

Automation Tab

The Automation Logs tab provides complete details such as the browser in which the test was automated, the operating system, the status of the test, the execution time of the test, the full page screenshot of every WebDriver command execution, the logs captured while test execution, the test execution video and finally the feature to download all the captured data.

Browser Automation Test

Console output:

The below output for browser automation with Selenium Java testing, shows the successful execution of the test case in two different virtual browsers – Firefox and Chrome in parallel. Click the test case to view the detailed logs.

Console output

Also Read: Selenium Java Testing: Page Object Model

Let’s Take A Quick Recap!

In this Selenium Java testing Tutorial, we explored the importance of cross browser automation and Selenium WebDriver along with the Selenium Grid features. We also explored how Selenium Java testing automation can be performed in a single browser, multiple browsers one at a time, or even in parallel. We saw the importance of automated browser Java testing and parallel testing, which provides an idea of wider compatibility. The available tools must be leveraged effectively to ensure that the webpage behaves the same across all browsers.

Testing on different browsers & OS combinations is the key factor for successful test completion for cross browser automation with Selenium and Java, which helps to ensure a better user experience. Your test coverage should ensure that your users get a seamless user experience across their devices. In addition, your Selenium test automation has to provide the confidence that not a single critical defect has been ignored in the product.

I hope you have gained knowledge and interest by reading this cross browser automation with Selenium and Java testing Tutorial. I would love to hear your comments on this article; feel free to share them in the comment section below. Dive into the automation pool and explore a melange of features hidden beneath it. Learn…Explore….Share…!!!!! 😊

Frequently Asked Questions

Can I learn Selenium without knowing Java?

Yes, of course, you can learn Selenium without knowing Java. As a matter of fact, you don’t need to know Java as long as you use the Selenium IDE for writing and running your tests.

Does Selenium require Java?

Java is a high-level programming language that is very popular for providing solutions to the Java platform. Specifically, Java is used to write Selenium automation scripts, which are also known as test scripts. Selenium supports other programming languages as well including Python, Ruby, and C.

Is Java or Python better for Selenium?

Python selenium is better than Java selenium due to its simple syntax, making it easier to remember and type.

What are the advantages of Selenium?

Selenium is a popular choice for automated testing on multiple platforms. This is because it supports the most popular programming languages and frameworks. In addition, it is open-source and free to use.

What are the basics of Selenium?

Selenium is a browser automation tool. It has two main components: WebDriver, which enables developers to scale and distribute scripts across many different environments and create browser-based regression automation suites and tests, and IDE, which allows developers to create quick bug-reproduction scripts.

Is Selenium with Java easy?

Learning Selenium WebDriver and Java can seem pretty intimidating. It’s not uncommon to feel like you just don’t understand what’s going on. And of course, there are all the questions of “what comes next?”. But don’t fret; you CAN learn WebDriver and Java (or any programming language, for that matter).

Which language is best for Selenium?

Selenium supports multiple programming languages to automate web applications like Java, Python, Ruby, C, etc. But in my opinion, Java is the best language to do automation using Selenium.

Author Profile Author Profile Author Profile

Author’s Profile

Shalini Baskaran

Shalini works as a Technical Writer at LambdaTest. She loves to explore recent trends in test automation. Other than test automation, Shalini is always up for travel & adventure.

Blogs: 20



linkedintwitter

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free