Automate UI Tests With Selenium

Tanay Kumar Deo

Posted On: February 22, 2024

view count19896 Views

Read time13 Min Read

Efficient User Interface (UI) testing is essential to the software testing cycle, validating that applications possess desired features and user-friendliness. Quality Assurance (QA) professionals meticulously test interface components, enhancing software quality and ensuring end users experience a comfortable and seamless application interaction.

Automation testing is imperative to maintain a high-quality UI and swiftly test new functionalities. It ensures seamless user experiences amid the ever-expanding realm of web technologies. Selenium, an open-source automation testing framework, offers tools for functional testing on web pages, simulating user interactions, and automating browser activities. This guide will show how Selenium empowers efficient UI testing automation.

If you’re looking to improve your Selenium interview skills, check out our curated list of Selenium interview questions and answers.

What is User Interface (UI) Testing?

User interface testing, or UI testing, focuses on verifying the functionalities of a software application’s graphical user interface (GUI). It involves evaluating the various elements and interactions within the user interface, such as buttons, forms, menus, navigation, etc, to ensure it meets its specifications.

What Sets Selenium Apart in UI Testing?

Selenium is a well-known automation testing framework that facilitates web application testing. It enables the simulation of user actions on various web browsers, allowing developers and testers to automate the testing of web applications.

Some of the benefits of Selenium that make it the perfect choice for UI Testing are:-

  • Support for Programming Languages: It provides compatibility with a wide range of programming languages such as Java, Python, C#, PERL, PHP, and JavaScript.
  • Cross-Browser Support: It offers extensive cross-browser support, allowing tests on various browsers, including Chrome, Firefox, Safari, Internet Explorer, Opera, and Microsoft Edge.
  • Operating System Support: It supports multi-operating systems such as Linux, Windows, Mac OS, and Solaris.
  • Community and Ecosystem: It has a large and active community of developers and testers, which ensures support and a wealth of resources, such as tutorials, documentation, etc, for users.
Info Note

Turn Testing Complexity into Simplicity: Choose LambdaTest for a Selenium-based cloud grid to run your tests over 3000 real browsers and operating systems. Try LambdaTest Today!

How Does Selenium UI Testing Work?

Selenium UI Testing uses Selenium WebDriver to execute test scripts on the browsers installed in the system. The architecture of Selenium WebDriver consists of four components.

How Does Selenium UI Testing Work

  • Selenium Client Libraries: Some client libraries supported by Selenium are Java, Python, C#, Ruby, JavaScript (Node.js), etc. These client libraries help Selenium standalone servers and the test scripts communicate easily.
  • W3C WebDriver Protocol: The W3C WebDriver protocol is standard for client-to-browser communication in Selenium. All significant browser vendors, such as Chrome, Microsoft Edge, Firefox Driver, etc, support this protocol. It develops open standards and guidelines that support consistency and compatibility across multiple web technologies and platforms.
  • Browser Drivers: Browser Drivers are executable files that enable communication between the Selenium WebDriver and the Web Browser. Each web browser (e.g., Chrome, Firefox, Edge, etc.) requires its specific driver to facilitate communication between Selenium WebDriver and Web Browser.
  • Real Browsers: These are real, standalone web browsers employed in web application testing. Selenium communicates with various browsers using browser-specific drivers like ChromeDriver for Chrome, EdgeDriver for Edge, etc, to automate operations and check the functionality of web pages.

Prerequisites and Setup of Selenium for UI Testing

UI Testing using Selenium requires several requirements and procedures to ensure a successful and efficient testing process.

To set up Selenium in our system, we will need to ensure we have the following prerequisites:

  • We must ensure that our system has OpenJDK (Open Java Development Kit) or Oracle JDK (Java Development Kit) installed.
  • We must have browsers such as Chrome, Firefox, or Microsoft Edge installed on our system.
  • We must have Eclipse IDE or IntelliJ IDE installed on our system to run Selenium test scripts. Refer to this blog on how to download Selenium and set up on multiple IDEs.
  • Set up the TestNG framework in the IDE for running test scripts. Learn how to create a project using TestNG in Eclipse.

The complete TestNG framework tutorial can help you learn more about it.

You can subscribe to the LambdaTest YouTube Channel and stay updated with the latest Selenium automation testing, Cypress testing, Playwright testing, and more tutorials.

Locating UI Elements in Selenium UI Testing

Making reliable and efficient automation scripts requires locating UI components in Selenium UI testing. These locators serve as the interface by which Selenium communicates with items on a web page. Some types of locators in Selenium are:-

To get in-depth knowledge of locators and how to locate WebElements in DOM, refer to this guide on Selenium locators and get detailed insights on locators in Selenium WebDriver with Examples.

Write Your First Test Script for Selenium UI Testing

In this section, we will write a test script to automate UI Tests with Selenium on the LambdaTest E-commerce Playground.

We will use Chrome Browser version 122 and the Windows 10 Operating System to perform Selenium UI Testing. The required pom.xml file for our Selenium project using TestNG is:-

Code Walkthrough:

The model version of the pom.xml file we are using is 4.0.0. The groupId “LambdaTest”, artifactId “Example”, and version “0.0.1-SNAPSHOT” are together used to identify the project across all the projects uniquely.

Maven project setup

The project-specific properties like encoding of the source file is UTF-8.

 encoding of the source file is UTF-8

We are importing the required dependencies like TestNG and Selenium Chrome Driver for our project. Ensure that the version of the dependencies must be according to the system requirements.

DependencyVersions

UI Testing using Name Attribute

In this section, we will perform UI testing on the Search Bar using the name attribute.

UI Testing using Name Attribute

Test Scenario:

  1. Launch the Chrome browser.
  2. Open the LambdaTest E-Commerce Playground.
  3. Locate the Search Bar using Name.
  4.  Search Bar

  5. Verify whether the Search Bar exists or not.
  6. Close the web browser.

Implementation:

This above TestNG XML suite file defines a suite containing a single test, which include the class DemoClass from the demo package. The purpose of this XML file is to configure and organize the execution of test cases in a Java project using TestNG. It allows us to specify which test classes to run, in which order, and with what configurations. This kind of configuration is essential for automated testing to ensure that the tests are executed correctly and efficiently.

Output Screen:

TestNG_XML_Suite_DemoClass_Config

UI Testing using Class Attribute

Here, we will perform UI testing using a Class attribute to check whether the UI is working perfectly.

UI Testing using Class Attribute

Test Scenario:

  1. Launch the Chrome browser.
  2. Open the LambdaTest E-Commerce Playground.
  3. Locate the “Desktops” element on the UI using Class Attribute.
  4. Desktops element on the UI using Class Attribute

  5. Retrieve the “Desktop” text using the getText() method.
  6. Verify whether the assertion is true or not by comparing retrieved text with the user input.
  7. Close the web browser.

Implementation:

Output Screen:

Output Screen

UI Testing using ID Attribute

Here, we will perform UI testing using the ID attribute to check whether the UI is working perfectly or not.

 perform UI testing using the ID attribute to check whether the UI

Test Scenario:

  1. Launch the Chrome browser.
  2. Open the LambdaTest E-Commerce Playground.
  3. Locate the “TOP PRODUCTS” element on the UI using ID Attribute.
  4. TOP PRODUCTS element on the UI using ID Attribute

  5. Retrieve the “TOP PRODUCTS” text using the getText() method.
  6. Verify whether the assertion is true or not by comparing retrieved with the user input.
  7. Close the web browser.

Implementation:

Output Screen:

Output Screen

UI Testing using CSS Selector

Here, we will perform UI testing using CSS Selector to fetch the data and check whether it is true or not.

UI Testing using CSS Selector

Test Scenario:

  1. Launch the Chrome browser.
  2. Open the LambdaTest E-Commerce Playground.
  3. Locate the “TOP TRENDING CATEGORIES” element on the UI using CSS Attribute.
  4. TOP TRENDING CATEGORIES element on the UI using CSS Attribute

  5. Retrieve the “TOP TRENDING CATEGORIES” text using the getText() method.
  6. Verify whether the assertion is true by comparing retrieved text with the user input.
  7. Close the web browser.

Implementation:

Output Screen:

Output Screen

We can see the test case failed as the fetched data “TOP TRENDING CATEGORIES” did not match with User input data “SEARCH”. Now, we will provide the correct data as input to check whether our assertion will pass or fail.

Output Screen:

Output Screen

The user’s test cases passed, as our fetched data “TOP TRENDING CATEGORIES” matched with the user input data.

Here, we will perform UI testing using the Link Text attribute to verify the hyperlink text.

UI Testing Using Link Text

Test Scenario:

  1. Launch the Chrome browser.
  2. Open the LambdaTest E-Commerce Playground.
  3. Locate the “HTC Touch HD” element on the UI using Link Text.
  4. HTC Touch HD” element on the UI using Link Text

  5. Retrieve the “HTC Touch HD” text using the getText() method.
  6. Verify whether the assertion is true or not by comparing retrieved text with the user input.
  7. Close the web browser.

Implementation:

Output Screen:

Output Screen

UI Testing using XPath

Here, we will perform UI testing using the XPath attribute to verify the heading.

UI Testing using XPath

Test Scenario:

  1. Launch the Chrome browser.
  2. Open the LambdaTest E-Commerce Playground.
  3. Locate the “FROM THE BLOG” element on the UI using XPath.
  4. “FROM THE BLOG” element on the UI using XPath

    Retrieve the “FROM THE BLOG” text using the getText() method.

  5. Verify whether the assertion is true or not by comparing retrieved text with the user input.
  6. Close the web browser.

Implementation:

Output Screen:

Output Screen

Running The Earlier UI Test On Selenium Cloud Grid

​​Why go to the trouble of buying multiple devices to test thoroughly when you can use the Selenium on Cloud instead? It helps reduce costs by eliminating the need for multiple physical machines.LambdaTest is an AI-powered test orchestration and execution platform that lets you run manual and automated tests at scale on over 3000 real devices, browsers, and OS combinations. It takes care of the infrastructure and has many more benefits that make your testing experience smooth and scalable.

Let’s see an earlier test scenario of UI testing on the Search Bar using LambdaTest Selenium Cloud.

Test Scenario:

  1. Launch the Chrome browser.
  2. Open the LambdaTest E-Commerce Playground.
  3. Locate the Search Bar using Name.
  4. Search Bar using Name

  5. Verify whether the Search Bar exists or not.
  6. Close the web browser.

Prerequisites:

  1. Create an account on LambdaTest.
  2. Navigate to your LambdaTest build directory.
  3. Select “Access Key” located at the top-right corner.
  4. Copy both your Username and Access Key from the displayed popup modal.
  5. Access your desired capabilities that can be generated from the LambdaTest capabilities generator.

Implementation:

The testng.xml file will remain the same as we have done on the local server. So, we didn’t need to modify it will be as usual.

Output Screen:

Output Screen

Best Practices For Selenium UI Testing

Some of the optimal approaches for UI testing in Selenium are:-

  • Page Object Model (POM): It allows webpages as classes and their elements as variables; user interactions are implemented through methods, thus minimizing redundancy in the test script and enhancing overall efficiency.
  • Avoid Thread.sleep(): Avoid the use of the Thread.sleep(), it introduces static wait times and unnecessary delays. This leads to inefficiencies and slow test execution of UI elements. Use Wait Commands in Selenium to avoid unnecessary delays and static wait times.
  • Automated Screenshots: Automated screenshots capture visual snapshots of the web app at key points in the testing process. This practice is concrete evidence of the UI components’ functionality, helping in result documentation and facilitating the debugging process.
  • Select the appropriate order for selectors: Select the appropriate order for Selectors to optimize test efficiency. The optimal sequence for selectors is XPath < CSS < Link Text < Name < ID.

Conclusion

UI testing evaluates how well a website or app’s buttons, forms, and other components function. Although it can be done manually, it will be a slow process. That’s why we automate UI tests with Selenium. This way, we can catch any mistakes or problems more easily and quickly.

Testers can improve the quality of web applications and provide a seamless user experience by following best practices and utilizing Selenium’s capabilities. Continuous learning and practice in Selenium UI testing will produce more reliable and high-performing software.

Frequently Asked Questions (FAQs)

What is the role of data-driven testing in Selenium UI automation?

Data-driven testing involves using multiple datasets to execute a single test. In Selenium, it optimizes test coverage by allowing scripts to run with various input values to ensure a more comprehensive validation of web applications.

Can Selenium UI tests be integrated into CI/CD pipelines?

Yes, integrating Selenium UI tests into Continuous Integration and Continuous Delivery (CI/CD) pipelines allows for automatic and frequent test execution. This ensures rapid feedback on application changes, enhances collaboration, and facilitates early detection of issues.

How can dynamic waits, such as WebDriverWait, benefit Selenium UI tests?

Dynamic waits, like WebDriverWait, enable scripts to wait for specific conditions before proceeding, ensuring synchronization with the web application’s dynamic elements. This enhances test stability, adapting scripts to varying loading times and conditions.

What are some common challenges faced in Selenium UI testing?

Common challenges in Selenium UI testing include handling dynamic elements asynchronous behavior, ensuring reliable waits, maintaining robust test scripts, managing cross-browser compatibility, and efficiently handling pop-up windows and alerts. Also, achieving effective reporting and integrating with Continuous Integration systems can be hurdles in UI automation.

Author Profile Author Profile Author Profile

Author’s Profile

Tanay Kumar Deo

Tanay kumar deo is a skilled software developer, Upcoming SDET at GlobalLogic (A Hitachi group company). With expertise in Android and web development, he is always eager to expand his skill set and take on new challenges. Whether developing software or sharing his knowledge with others, he is driven by a desire to make a positive impact on the world around him. In addition to his technical abilities, Tanay also possesses excellent blogging and writing skills, which allow him to effectively communicate his ideas and insights to a wider audience.

Blogs: 16



linkedintwitter

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free