Skip to main content

Auto Healing for Selenium Web Automation


The TestMu AI Auto Healing feature for Selenium testing automatically recovers from certain types of failures during test execution. When enabled, it reduces test flakiness and improves test reliability by handling unexpected situations and errors in your test suites.

Enabling Auto Healing


Pass the autoHeal: true capability in your WebDriver configuration to enable this feature.

const capability = {
"browserName": "Chrome",
"browserVersion": "114.0",
"LT:Options": {
"platformName": "Windows 10",
"project": "Untitled",
"w3c": true,
"plugin": "node_js-node_js",
"autoHeal": true
}
}

Warning: The autoHeal capability only works when smartWait is disabled. Both features cannot be enabled together in the same test session.

info

No prerequisites are required. Enable auto-healing directly via desired capabilities.

Language Preferences


For Java, use the following code:

ChromeOptions browserOptions = new ChromeOptions();
browserOptions.setBrowserVersion("118.0");
HashMap<String, Object> ltOptions = new HashMap<String, Object>();
ltOptions.put("username", "YOUR_LAMBDATEST_USERNAME");
ltOptions.put("accessKey", "YOUR_LAMBDATEST_ACCESS_KEY");
ltOptions.put("project", "Untitled");
ltOptions.put("selenium_version", "4.0.0");
ltOptions.put("w3c", true);
browserOptions.setCapability("LT:Options", ltOptions);

How Auto Healing Works


Selenium Locator auto-healing adjusts locators by merging attributes and context to handle inconsistent tests. During runtime, it monitors the web page to identify DOM (Document Object Model) changes.

When an element is successfully located on the page, its DOM path is recorded for later use. If that same element is later referenced on the same page and is missing, the system evaluates the current page and generates new locators for altered elements based on previous benchmarks.

add

Auto Detection of New Locator


Web elements might change their locators due to updates in the web application. The Auto Healing feature automatically detects the new locator and continues the test execution.

Here is an example test case demonstrating this:

import assert from 'assert';
import { Builder, By, until, Capabilities } from 'selenium-webdriver';

describe('Amazon Search Box Test', function () {
this.timeout(30000);
let driver;
let vars;

const capability = {
"browserName": "Chrome",
"browserVersion": "114.0",
"LT:Options": {
"platformName": "Windows 10",
"project": "Untitled",
"w3c": true,
"plugin": "node_js-node_js",
"autoHeal": true
}
}

beforeEach(async function () {
driver = await new Builder()
.usingServer('LambdaTest_Hub_Url')
.withCapabilities(capability)
.build();
vars = {};
});

afterEach(async function () {
await driver.quit();
});

it('should change id of search box and find element', async function () {
await driver.get('https://www.amazon.com');
const searchBoxActual = await driver.findElement(By.id('nav-search-submit-button'));
await driver.executeScript("document.getElementById('nav-search-submit-button').id='amazonsearchbox'");
// const searchBox = await driver.findElement(By.id('amazonsearchbox'));
const searchBoxHeal = await driver.findElement(By.id('nav-search-submit-button'));
assert(searchBoxHeal, 'Element not found');
});
});

In the above test case, the script changes the id of the search box on Amazon's homepage and then tries to find the element using the old id. The Auto Healing feature automatically detects the new id and finds the element.

To run the test, execute the below command:

./node_modules/.bin/mocha autohealingTest.js 

Benefits of Auto Healing


Self-healing plays a vital role in refining the test automation process. Here are its primary advantages.

  1. Increased Test Stability: The auto-healing feature ensures that tests remain consistent and stable, even when faced with minor changes in the web application's UI. By dynamically adjusting to these changes, auto-healing overcomes test flakiness and provides reliability to your test suite.

  2. Reduced Test Maintenance: The system automatically adapts to evolving application interfaces, reducing the manual effort required to update test scripts and saving time and resources.

  3. Intelligent Test Automation: The auto-healing feature adds intelligence to automated tests and enables them to dynamically adapt to changes in an application and its environment. It applies artificial intelligence and machine learning algorithms to the self-healing of tests.

  4. Reliable CI Pipeline: With the auto-healing feature, TestMu AI ensures that the tests feeding into the CI pipeline are stable, reducing the chances of unexpected failures and ensuring a smoother development and deployment process.

Limitations of Auto Healing


While the Auto Healing feature handles a wide range of issues, there are certain limitations to be aware of.

  • Non-recoverable errors: Auto Healing cannot recover from certain types of errors, such as WebDriver initialization errors or system-level failures.

  • Test accuracy: While Auto Healing reduces test flakiness, it may also mask real issues in your web application or test scripts. Review the logs and understand why a test needed healing.

  • Performance impact: While typically minimal, enabling Auto Healing can have a slight impact on test execution time due to additional checks and recovery mechanisms.

The Auto Healing feature enhances your test suite, but it does not replace good test design and error handling practices. Always ensure your tests are well-designed, have proper error handling in place, and are reviewed regularly for issues that may be masked by the Auto Healing feature.


If you have any questions, please feel free to let us know. Our experts are always available on chat to help you out with any roadblock regarding our product. Happy testing!

Test across 3000+ combinations of browsers, real devices & OS.

Book Demo

Help and Support

Related Articles