Selenium 4 features significant enhancements over Selenium 3, including a revamped Selenium Grid for distributed testing, native support for HTML5, and integration of the W3C WebDriver protocol for improved compatibility. Additionally, it offers enhanced debugging and error-handling capabilities, streamlining the testing process for better efficiency and reliability.

  • Streamline Testing Processes: Selenium automation allows organizations to streamline and enhance their testing processes by automating repetitive tasks associated with web application testing.
  • Interact with Web Elements: Automation scripts, facilitated by Selenium’s WebDriver, interact with web elements, imitating user actions to test functionality.
  • Accelerate Testing: Selenium automation accelerates testing by eliminating manual intervention and executing tests efficiently.
  • Ensure Consistency and Reliability: By automating tests, Selenium ensures consistent and reliable results across diverse browser environments, reducing the risk of human error.
  • Faster Releases: Selenium automation acts as a catalyst for achieving faster releases by expediting the testing phase.
  • Improve Test Coverage: With automation, organizations can improve test coverage by running tests more frequently and comprehensively.
  • Maintain Application Integrity: Selenium automation helps in maintaining the integrity of web applications by identifying and addressing issues promptly.
 Selenium 3
Selenium 4

Selenium 4 New Features: W3C WebDriver Standardization

Selenium 4 fully supports the W3C WebDriver standard, improving compatibility across different browsers and reducing inconsistencies.

  • Standardized Communication: The adoption of the W3C WebDriver protocol ensures consistent behavior across different browsers, reducing compatibility issues.
  • Improved Grid Architecture: Enhanced scalability and easier management with support for distributed mode, Docker, and Kubernetes.
  • User-Friendly Selenium IDE: Modernized interface and parallel test execution simplify test creation and management.
  • Enhanced Browser Driver Management: Unified driver interface and automatic updates reduce manual configuration and ensure compatibility.
  • Advanced Browser Interactions: Integration with DevTools Protocols for Chrome and Firefox enables comprehensive network and performance monitoring.
  • Simplified Capabilities Configuration: Using Options classes instead of DesiredCapabilities improves the readability and maintainability of test scripts.
  • Improved Actions API: Enhancements provide more reliable and consistent complex user interactions across different browsers.
  • Enhanced Performance: Overall performance improvements result in faster and more efficient test execution.
  • Better Documentation: Comprehensive and improved documentation reduces the learning curve and enhances productivity.
  • Backward Compatibility: Designed to be backward compatible, allowing seamless upgrades without significant changes to existing test scripts.

Here, I’ll outline the precise changes introduced in Selenium 4 when compared to its earlier versions:

1. W3C WebDriver Protocol:

  • Selenium 4 further aligns with the W3C WebDriver standard, ensuring better compatibility across different browsers.
  • Full support for the W3C WebDriver protocol was a significant improvement to enhance consistency and stability across browser implementations.

2. New Grid :

  • Selenium Grid has been updated in Selenium 4 with a new version known as the “Grid 4”.
  • The new grid is more scalable and provides better support for Docker and Kubernetes.

Let’s briefly understand Selenium Grid, which consists of two major components:

  • Node: Used to execute tests on individual computer systems, there can be multiple nodes in a grid.
  • Hub: The central point from which it controls all the machines present in the network. It contains only one hub, which helps in allocating test execution to different nodes.

In Selenium 4, the Grid is highly flexible. It allows testing cases against multiple browsers, browsers of different versions, and also on different operating systems.

Even now, there is no need for a setup to start the hub and nodes individually. Once the user starts the server, the Grid automatically functions as both nodes and hub.

3. Relative Locators:

  • Selenium 4 introduced a new set of locators called “Relative Locators” or “Relative By”.
  • Relative Locators provide a more natural way of interacting with elements concerning their surrounding elements, making it easier to write maintainable tests.

There are five locators added in Selenium 4:

  • below(): Web element located below the specified element.
  • toLeftOf(): Target web element present to the left of the specified element.
  • toRightOf(): Target web element presented to the right of the specified element.
  • above(): Web element located above the specified element.
  • near(): Target web element away (approximately 50 pixels) from the specified element.

Note: All the above relative locator methods support the withTagName method.

  • Selenium IDE received significant updates with Selenium 4 new features, making it more powerful and versatile for recording and playing back test scenarios.
  • The Selenium IDE has become a browser extension available for Chrome and Firefox.

The features include:

  1. Improved Browser Support:
    • The new version enhances browser support, allowing any browser vendor to seamlessly integrate with the latest Selenium IDE.
  2. CLI Runner Based on NodeJS:
    • The Command Line Interface (CLI) Runner is now built on NodeJS instead of the HTML-based runner.
    • It supports parallel execution, providing a more efficient way to execute tests concurrently.
    • The CLI Runner generates a comprehensive report, detailing the total number of test cases passed and failed, along with the execution time taken.

These improvements in Selenium IDE aim to enhance compatibility with various browsers and provide a more versatile and efficient test execution environment through the CLI Runner based on NodeJS.

  • Selenium 4 introduced a new Window interface, providing a more consistent and convenient way to handle browser windows and tabs.
  • if the user wants to access two applications in the same browser, follow the below code
    • driver.get(“https://www.google.com/”);
    • driver.switchTo().newWindow(WindowType.WINDOW);
    • driver.navigate().to(“https://www.bing.com/”);
  • Selenium 4 provides enhanced support for interacting with the browser DevTools using the DevTools API.
  • This allows testers to perform advanced browser interactions and access additional information about the browser.

In the new version of Selenium 4, they have made some internal changes in the API. Earlier in Selenium 3, the Chrome driver directly extended the Remote Web Driver class. However, in Selenium 4, the Chrome driver class now extends to the Chromium Driver class.The Chromium Driver class has some predefined methods to access the dev tool, highlighting the new features of Selenium 4.

Note: Chromium Driver extends the Remote Web driver class.

By using the API, we can perform the following operations:

  • Enable Network Offline
  • Enable Network Online
  • Get Console Logs
  • Load Insure Web Site

In Selenium 4, a notable enhancement is the provision to capture a screenshot of a specific web element, which was unavailable in earlier versions. This feature lets users focus on capturing images of individual elements on a webpage, providing more targeted and precise visual information during testing or debugging processes. The capability to take screenshots of specific web elements enhances the flexibility and granularity of testing scenarios, making Selenium 4 a valuable upgrade for web automation tasks. Among the various Selenium 4 features, this improvement stands out for its practical application in detailed web testing.

In Selenium 4, the parameters received in Waits and Timeout have changed from expecting (long time, TimeUnit unit) to expect (Duration duration) which you see a deprecation message for all tests.

Before Selenium 4 –

Now we will see this as deprecated @Deprecated WebDriver.Timeouts implicitlyWait(long time, TimeUnit unit);

WebDriverWait is also now expecting a ‘Duration’ instead of a long for timeout in seconds and milliseconds.

The method is now deprecated in selenium public WebDriverWait(@NotNull org.openqa.selenium.WebDriver driver, long timeoutInSeconds)

FluentWait –

Before Selenium 4

After Selenium 4 –

9. Bi-Directional Communication:

  • Selenium 4 introduced better bi-directional communication between Selenium and browser drivers.
  • This allows for more efficient communication, resulting in improved performance and stability.

10. Enhanced Documentation:

  • Selenium 4 comes with improved and updated documentation, making it easier for users to find information and resources related to Selenium.

11. Support for Chrome DevTools Protocol (CDP):

  • Selenium 4 allows users to interact with Chrome DevTools using the Chrome DevTools Protocol directly.

Conclusion:

Selenium 4 marks a substantial leap forward, addressing limitations present in Selenium 3 and introducing new features to meet the evolving needs of web automation. The Relative Locators, enhanced window handling, improved DevTools API, and Grid 4 support make Selenium 4 a powerful and versatile tool for testers and developers in the realm of web testing and automation.

Click here for more blogs on software testing and test automation.

3