Blogs

Get useful information on apps testing and development

Selenium Test Cases

Priyanka Charak | Posted on | 2 min Read

How To Speed Up Selenium Test Cases?

Introduction

 

When we talk about automation, one of the tools that comes first to our mind is Selenium. We all know that the Selenium WebDriver is a remarkable tool for web automation. The primary reason for implementing Selenium automation testing is to speed up selenium tests. In most of the cases, Selenium performs extraordinarily well than the manual ones. 

But, sometimes automation scripts generally run slower. Integration and Unit Testing are comparatively faster than Selenium tests. Sometimes a single test takes minutes to run, making it even slower when their number is more because of which it is difficult to get accurate and faster feedback. However, you can always speed up selenium tests using the best approaches to selenium test automation

 

 

How can you execute your Selenium test cases faster?

 
 

There are various ways that testers can follow to speed up Selenium test cases. You can consider using explicit waits, web locators, prefer different browsers, optimize Selenium infrastructure, and consider other best practices for enhanced software performance. The process of maintaining Selenium test cases becomes cumbersome with so many updates in the end product. So, we cannot afford to ignore the Selenium test case performance; we should focus on accelerating them right from the initial stages instead. Key tasks of the Selenium Test cases in  any given scenarios are:

  • Open URL under test utilizing Selenium Webdriver (local/remote) 
  • Making use of relevant web locators, locate the web elements
  • Perform assertions on located web elements on the page under test
  • Relieve the resources used by WebDriver

Let us highlight a few of the methods to understand how to speed up selenium tests.

 

Parallel Testing in Selenium Automation

 

It is one of the easiest ways to expedite the Selenium test cases. Parallel testing allows you to execute multiple tests simultaneously on different device-browser combinations and OS configurations, covering the entire test suite in no time. If you have an in-house Selenium Grid infrastructure, you can always check the benefits of the Selenium Grid 4 and see what it has to offer in terms of accelerating the speed of Selenium test cases. Let us assume you have ten tests to run.  If you run them on different devices, all the ten tests can be completed in just ten seconds instead of 100 seconds. You can opt for this method at class and method levels. Grouping test scenarios, their parameterization, and cloud-based options would further strengthen the process.

 

 

a. Grouping tests: 

Multiple test methods and test files in the test suite makes the implementation difficult. If we group the test scenarios based on the type of functionality under test, it becomes easy to manage any emerging complexities.

 

b. Replacing Selenium 3 with Selenium 4:

Selenium has seen significant improvements with the release of Selenium 4. It comes with optimized Selenium Grid, Standardized Selenium Webdriver World wide web consortium (W3C), Enhanced Selenium 4 IDE, and additionally, it has also introduced Chrome Web Tools and relative locators. These improvements can significantly speed up Selenium tests. If we compare Selenium 3 and 4, we will figure out that the former uses JSON Wired Protocol for interaction between the browser and the test code which causes an additional burden of encrypting and decoding multiple API requests via W3C. But the latter utilizes WebDriver W3C protocol which speeds up the interaction between the web browser and test code. The newly introduced Selenium 4 relative locators like – ‘above’ , ‘below’, ‘to_left_of’, ‘to_right_of’, ‘near’, speed up the Selenium test cases and improve their overall stability.  Also, it is easy to upgrade from version 3 to 4 without any hassle.

 

c. Cloud-based Selenium Grid: 

Whenever you want to test large-scale web applications where many parallel tests have to be run across multiple browser-OS-device combinations, you will need a cloud-based Selenium Grid to execute and expedite Selenium test cases. Below is a pictorial representation of Selenium Grid.

 

 

speed up Selenium test

 

 

Choosing relevant Web locators

 
 

Web locators are indispensable parts of any Selenium test scenario. After locating the web elements, there is a need for an appropriate web locator to act further.  It is always advisable to use faster web locators out of the many options available. Out of all web locators, the ID locator is the fastest one in Selenium WebDriver. Let us discuss in brief some of the most used web locators:

 

a. ID Locator:  It works fastest using document.getElementById() javascript command which is relevant to all browsers. In cases where many unique elements persist, this command yields the first unique match. It works only if the HTML element has an ID attribute that is unique to every element on-page. In terms of execution speed, after ID, Name, CSS Selector, and XPath are the fastest ones, respectively.

 

b. Name Selector:  The Name Selector web locator is utilized when there is no ID in the WebElement.

 

c. CSS Selector: If the WebElement does not have an ID or NAME attribute, choosing CSS Selector Web locator in such a scenario is appropriate. CSS usually doesn’t differ across most common web browsers and ensures better performance of CSS Engine using CSS Selector in Selenium. Advantage of using this web locator is faster element recognition, lowered browser incompatibility, and reduced test execution. CSS locator is preferred in the case of legacy web browsers like Internet Explorer to provide better explicitness in comparison to XPath.

 

d. XPath: XPath Selector is the most flexible web locator, but it is the slowest among the fastest four locators because every layer of the path has to be crossed to select a particular web element and move from one browser to another. Using an XPath locator should not be the primary choice but should be used only when this is the only option remaining.

  • Using few Web locators: Keeping the number of web locators at a minimum improves the test script readability reducing the time taken in the execution of the Selenium script.
  • Explicit Waits: Explicit wait commands for automation testing will eliminate any slowdown and allow you to carry out wait conditions like Element is visible, Element is Clickable, Element is Selectable on-page Web Elements, which is not possible in the case of Implicit Wait in Selenium. For example, the ToBeClickable method yields a WebElement when the identified element is clickable. Explicit wait retreats as soon as the condition is fulfilled. It means the element is returned as a result and does not wait for the entire time duration. There is a code snippet below which shows the WebElement with ID = element is located within 6 seconds. After its location, the explicit wait exits, and the required WebElement returns.

 
Test Scripts that utilize explicit wait showcase better performance.
 

 

  • Create Atomic Scripts: Creating independent test cases by simplifying the complex scenarios makes the Selenium tests efficient. Frameworks like TestNG support explicit test dependencies between test methods, whereas atomic tests detect the failures easily, which reduces testing time, effort spent in maintenance, it minimizes test dependency, and accelerates the Selenium tests.
  • Disable images on Web pages for faster page loads: After creating the Selenium instance, you can open the page under test using driver.get() method. Many web pages are rich in content and composed of many images responsible for slow page load time. But the page loading speed can be accelerated by disabling image loading using browser-related settings. 

The below snapshots show:

– How to disable page loading using Selenium Scripts in Chrome (on Amazon website) to speed up Selenium test cases and page loading.

 

 

-How to disable page loading using Selenium Scripts in Firefox to speed up Selenium tests:

 

In this scenario, image loading is controlled in the Amazon e-commerce website where Firefox preference is set to 2 using permissions.default.image.

 

  • Data-Driven Testing for Parameterization:  Let’s examine how to speed up selenium tests using Parameterization. When it is about testing against extensive data-sets, and running the same test on different test inputs. Parameterization proves to be a great choice. Parameterization is well supported by most of the automation frameworks like TestNG(Selenium Java), JUnit, NUnit(C#), PyTest(Selenium Python), etc.

  • Using headless Browsers /Drivers:

    Headless browsers allow us to execute browser User Interface(UI) tests without browser Graphical User Interface(GUI). It also helps to improve the efficiency of cross-browser tests that run in the background. You do not require this best practice if you do not want to know about UI interactions received via test scripts. Some common headless browsers are HtmlUnit, Splash, PhantomJS, etc. Check out the performance of Selenium Browser Tests in context to PhantomJS Driver.

 

Choose the right Selenium Framework for your app tests

When it comes to test framework selection for Selenium automation, there are several popular options available, such as TestNG and JUnit. In this section, we will delve deeper into these frameworks, highlighting their features that can enhance test execution speed and comparing their performance and execution time. Based on specific use cases, recommendations will be provided to help testers make an informed decision.

TestNG:

Overview: TestNG offers robust features for test configuration, parallel execution, and test data management. It supports data-driven testing, allowing tests to be executed with different data sets. TestNG also provides extensive reporting capabilities, including HTML reports and logs.

Performance and Execution Time: TestNG’s parallel execution capabilities contribute to faster test execution by distributing tests across multiple threads or processes. It allows for parallel execution at the method, class, or suite level. By leveraging parallel execution, TestNG can significantly reduce the overall execution time of test suites.

Use Case Recommendations: TestNG is well-suited for large test suites that require efficient parallel execution, extensive test configuration options, and comprehensive reporting. It is especially beneficial in scenarios where a high degree of test parallelization is desired, such as running tests across different browsers or devices simultaneously.

JUnit:

Overview: JUnit is a widely adopted testing framework known for its simplicity and ease of use. It provides annotations and assertions for defining and verifying test cases. JUnit integrates seamlessly with development environments and build tools, making it a popular choice for unit testing in Java applications.


Performance and Execution Time: JUnit focuses primarily on unit testing and does not have built-in features for parallel execution or test data management like TestNG. However, by optimizing test case design and minimizing unnecessary interactions with external systems, developers can still achieve faster test execution with JUnit.


Use Case Recommendations: JUnit is ideal for unit testing and smaller test suites where parallel execution and advanced test configuration are not the primary concerns. It is widely used in projects following the test-driven development (TDD) approach and is well-suited for developers who prefer a lightweight and straightforward testing framework.

Other Frameworks:

Beyond TestNG and JUnit, there are additional frameworks available for Selenium automation, such as Cucumber, Robot Framework, or NUnit. These frameworks have their unique features and target different programming languages and ecosystems.

Performance and Execution Time: The performance and execution time of these frameworks can vary based on their specific features, optimizations, and integrations with Selenium. It is recommended to review the documentation and community feedback of each framework to understand their performance characteristics.

Use Case Recommendations: The choice of these frameworks depends on the specific requirements of the project, team expertise, and language preferences. For instance, Cucumber is widely used for behavior-driven development (BDD), while Robot Framework is known for its simplicity and support for keyword-driven testing. NUnit is popular for .NET-based projects.

Key considerations in selecting a test framework

Project Size and Complexity: Choose a framework that can handle the size and complexity of the project without compromising execution speed.

Parallel Execution Requirements: If parallel execution is a crucial requirement, frameworks like TestNG or frameworks that support parallel execution should be considered.

Test Data Management: If extensive test data management and data-driven testing are necessary, frameworks like TestNG provide better support in this area.

Reporting and Integration Needs: Consider the reporting capabilities and integration options with CI/CD tools, test management systems, or other project-specific tools required for efficient test execution and reporting.

Ultimately, the choice of test framework should align with the project’s goals, team capabilities, and specific automation needs. Evaluating the features, performance, and suitability of each framework will help make an informed decision that optimizes test execution speed and supports the project’s testing requirements.

Conclusion

 

Speed of Selenium test execution is of crucial importance to the business. Even if they are slow, there are so many ways to speed up selenium tests. The aforementioned best practices help speed up Selenium tests, accelerate and reduce test times. Early detection of bugs in continuous testing leads to a faster resolution, which improves test performance and enhances product quality.

 

Priyanka Charak

Tech Blogger - She writes about Technology, Mobile Application Development, Internet of Things, E-commerce, Computing and Design with the aim to coalesce new media and technology.