Getting Started With Visual Regression Testing Using Selenium On SmartUI
Using the LambdaTest platform, perform regression testing in just one click and find Visual UI Regression bugs easily with the help of Smart Testing. This documentation will act as your step-by-step guide in performing successful Visual Regression tests.
- Basic understanding of Selenium and WebDriver is required.
- Go to
LambdaTest SmartUI
and login along with your credentials. - Access your Hub for your selenium remote connection instance at
hub.lambdatest.com/wd/hub
. - Copy
LT_USERNAME
andLT_ACCESS_KEY
credentials fromAccess Key
button on the top right of the dashboard.
- MacOS/Linux
- Windows-CMD
- Windows-PS
export LT_USERNAME="YOUR_USERNAME"
export LT_ACCESS_KEY="YOUR ACCESS KEY"
set LT_USERNAME="YOUR_USERNAME"
set LT_ACCESS_KEY="YOUR ACCESS KEY"
$Env:LT_USERNAME="YOUR_USERNAME"
$Env:LT_ACCESS_KEY="YOUR_ACCESS_KEY"
The following steps will guide you in running your first Visual Regression test on LambdaTest platform -
Step 1: Create a SmartUI Project
The first step is to create a project with the application in which we will combine all your builds run on the project. To create a SmartUI Project, follow these steps:
- Go to Projects page
- Click on the
new project
button - Select the platform as Web for executing your
Selenium
tests. - Add name of the project, approvers for the changes found, tags for any filter or easy navigation.
- Click on the Submit.
Step 2: Configure your test with Selenium Desired Capabilities
Once you have created a SmartUI Project, you can generate screenshots by running automation scripts. Follow the below steps to successfully generate screenshots -
- Please clone the following sample Github repo (
https://github.com/LambdaTest/smartui-node-sample
).
git clone https://github.com/LambdaTest/smartui-node-sample
- Set up the LambdaTest credentials by following the instructions mentioned in the
README.md
file. - Edit the required capabilities for your test suite.
- NodeJS
- Python
- Ruby
- C#
- Java
let capabilities = {
platform: "Windows 10", // Configure your OS for Selenium test
browserName: "chrome", // Configure your Browser for Selenium test
version: "latest", // Configure your Browser Version for Selenium test
visual: true, // Configure your Capture screenshot for Selenium test
name: "test session", // name of the test for Selenium
build: "Automation Build", // name of the build for Selenium
"smartUI.project": "<Your Project Name>", // Replace the name of project with the new project name
"smartUI.build": "<Your Build Name>", // Replace the name of Build with the new Build name
"smartUI.baseline": false, // Enable if you want to update to a new baseline build
};
// Connecting to the Lambdatest Selenium Cloud Grid with Smart UI
let gridUrl =
"https://" +
"<Your Username>" +
":" +
"<Your Access Key>" +
`hub.lambdatest.com/wd/hub`;
// Here is your Remote WebDrive Connection
let driver = await new webdriver.Builder()
.usingServer(gridUrl)
.withCapabilities(capabilities)
.build();
options = ChromeOptions()
options.browser_version = "120.0"
options.platform_name = "Windows 10"
lt_options = {};
lt_options["username"] = "USERNAME";
lt_options["accessKey"] = "ACCESS_KEY";
lt_options["project"] = "Untitled";
lt_options["smartUI.project"] = "<Project Name>";
lt_options["w3c"] = True;
lt_options["plugin"] = "python-python";
options.set_capability('LT:Options', lt_options);
options.set_capability('LT:Options', lt_options);
#Connecting to the Lambdatest Selenium Cloud Grid with Smart UI
self.driver = webdriver.Remote(
command_executor= "https://" +"<Your Username>" +":" +"<Your Access Key>" + `hub.lambdatest.com/wd/hub`.format(username, access_key),options=options)
options = Selenium::WebDriver::Options.chrome
options.browser_version = "120.0"
options.platform_name = "Windows 10"
lt_options = {};
lt_options[:username] = "USERNAME";
lt_options[:accessKey] = "ACCESS_KEY";
lt_options[:project] = "Untitled";
lt_options[:w3c] = true;
lt_options[:plugin] = "ruby-ruby";
options.set_capability('LT:Options', lt_options);
lt_options[:'smartUI.project']="SmartUI_Project_Name"
options.set_capability('LT:Options', lt_options);
#Connecting to the Lambdatest Selenium Cloud Grid with Smart UI
self.driver = webdriver.Remote(
command_executor= "https://" +"<Your Username>" +":" +"<Your Access Key>" + `hub.lambdatest.com/wd/hub`.format(username, access_key),options=options)
String LT_USERNAME = GetEnvironmentVariable("LT_USERNAME");
String LT_ACCESS_KEY = GetEnvironmentVariable("LT_ACCESS_KEY");
IWebDriver driver;
ChromeOptions capabilities = new ChromeOptions();
capabilities.BrowserVersion = "latest";
Dictionary<string, object> ltOptions = new Dictionary<string, object>();
ltOptions.Add("username", LT_USERNAME);
ltOptions.Add("accessKey", LT_ACCESS_KEY);
ltOptions.Add("platformName", "Windows 10");
ltOptions.Add("project", "Demo LT");
ltOptions.Add("build", "C# Build");
ltOptions.Add("sessionName", "C# Single Test");
ltOptions.Add("smartUI.project", "<SMARTUI PROJECT NAME>");
ltOptions.Add("w3c", true);
ltOptions.Add("plugin", "c#-c#");
capabilities.AddAdditionalOption("LT:Options", ltOptions);
// Connecting to the Lambdatest Selenium Cloud Grid with Smart UI
driver = new RemoteWebDriver(new Uri("https://hub.lambdatest.com/wd/hub/"), capabilities);
ChromeOptions browserOptions = new ChromeOptions();
browserOptions.setPlatformName("Windows 10");
browserOptions.setBrowserVersion("120.0");
HashMap<String, Object> ltOptions = new HashMap<String, Object>();
ltOptions.put("username", "<USERNAME>");
ltOptions.put("accessKey", "<ACCESS_KEY>");
ltOptions.put("project", "Untitled");
ltOptions.put("smartUI.project", "<SmartUI Project Name>");
ltOptions.put("w3c", true);
ltOptions.put("plugin", "java-java");
browserOptions.setCapability("LT:Options", ltOptions);
// Connecting to the Lambdatest Selenium Cloud Grid with Smart UI
driver = new RemoteWebDriver(new URL("https://" + username + ":" + accesskey + gridURL), capabilities);
- Installing dependency and for executing the test.
- NodeJS
- Python
- Ruby
- C#
- Java
npm i && node <file_name>
pip install -r requirements.txt && python3 <file_name>
sudo gem install selenium-webdriver && ruby <file_name>
cd Packages nuget.exe install ..NUnitSeleniumpackages.config nmake clean build make <file_name>
mvn clean install && mvn test -P <file_name>
Here you can explore multiple features and execute more such builds.
Step 3: Configure your Screenshot Capturing Options
For taking viewport screenshot
This part of the code needs to be attached below the required segment of selenium script of which we would like to take the screenshot to test on.
- NodeJS
- Python
- Ruby
- C#
- Java
let config = {
screenshotName: '<Name of your screenshot>'
};
await driver.executeScript("smartui.takeScreenshot", config);
config = {
'screenshotName': '<Your Screenshot Name>'
}
driver.execute_script("smartui.takeScreenshot", config)
config = {
'screenshotName' => '<Your Screenshot Name>'
}
driver.execute_script("smartui.takeScreenshot", config)
var config = new Dictionary<string, string> {
{"screenshotName", "<Your Screenshot Name>"}
};
driver.ExecuteScript("smartui.takeScreenshot", config);
Map<String, Object> config = new HashMap<>();
config.put("screenshotName", "<Your Screenshot Name>");
((JavascriptExecutor)driver).executeScript("smartui.takeScreenshot", config);
For capturing full page screenshot
You can capture the full page screenshot for all different websites which have a scrolling functionality on their application user interface for your Selenium functional testing.
Add the following Webhook to your test cases where we need to capture the screenshot of your application.
- NodeJS
- Python
- Ruby
- C#
- Java
driver.executeScript("smartui.takeFullPageScreenshot=<Your Screenshot Name>")
driver.execute_script("smartui.takeFullPageScreenshot=<Your Screenshot Name>")
driver.execute_script("smartui.takeFullPageScreenshot=<Your Screenshot Name>")
driver.ExecuteScript("smartui.takeFullPageScreenshot=<Your Screenshot Name>");
((JavascriptExecutor)driver).executeScript("smartui.takeFullPageScreenshot=<Your Screenshot Name>");
SmartScroll (For browsers other than Chrome) BETA
For browsers other than chrome (Mozilla, Safari etc.) and for websites Full Page Screenshot
fails, you can use smartscroll to take a full page screenshot of your web page by adding this hook in your test script.
- NodeJS
- Python
- Ruby
- C#
- Java
await driver.executeScript("smartui.takeFullPageScreenshot,{\"screenshotName\":\"<screenshot-name>\", \"smartScroll\":true }");
driver.execute_script("smartui.takeFullPageScreenshot,{\"screenshotName\":\"<screenshot-name>\", \"smartScroll\":true }")
driver.execute_script("smartui.takeFullPageScreenshot,{\"screenshotName\":\"<screenshot-name>\", \"smartScroll\":true }")
driver.ExecuteScript("smartui.takeFullPageScreenshot,{\"screenshotName\":\"<screenshot-name>\", \"smartScroll\":true }");
((JavascriptExecutor)driver).executeScript("smartui.takeFullPageScreenshot,{\"screenshotName\":\"<screenshot-name>\", \"smartScroll\":true }");
For capturing the screenshot of a specific element
You can capture screenshots of targeted elements by leveraging various locator mechanisms such as XPath, CSS ID, class, and selectors. This precision-driven approach ensures accurate and specific visual regression testing for your web application.
Add the following Webhook to your test cases where you need to capture the screenshot of a particular element on your UI.
- NodeJS
- Python
- Ruby
- C#
- Java
let config = {
screenshotName: '<Screenshot Name>',
elementType: 'xpath'/'css_selector'/'id'/'class', //Choose one from the following options - xpath, css_selector, id or class
element: '<Required Element>' //Add your required element here
await driver.executeScript("smartui.takeScreenshot", config);
config = {
'screenshotName': '<Your Screenshot Name>',
'elementType': 'xpath'/'css_selector'/'id'/'class', #Choose one from the following options - xpath, css_selector, id or class
'element': '<Required Element>' #Add your required element here
}
driver.execute_script("smartui.takeScreenshot", config)
config = {
'screenshotName' => '<Your Screenshot Name>',
'elementType'=> 'xpath'/'css_selector'/'id'/'class', #Choose one from the following options - xpath, css_selector, id or class
'element'=> '<Required Element>' #Add your required element here
}
driver.execute_script("smartui.takeScreenshot", config)
var config = new Dictionary<string, string> {
{"screenshotName", "<Your Screenshot Name>"},
{"elementType","xpath"/"css_selector"/"id"/"class"}, //Choose one from the following options - xpath, css_selector, id or class
{"element", "<Required Element>"} //Add your required element here
};
driver.ExecuteScript("smartui.takeScreenshot", config);
Map<String, Object> config = new HashMap<>();
config.put("screenshotName", "<Your Screenshot Name>");
config.put("elementType", "xpath"/"css_selector"/"id"/"class"); //Choose one from the following options - xpath, css_selector, id or class
config.put("element", "<Required Element>"); //Add your required element here
((JavascriptExecutor)driver).executeScript("smartui.takeScreenshot", config);
Step 4: View SmartUI Results
You have successfully integrated SmartUI with your Selenium tests. Visit your SmartUI project to view builds and compare snapshots between different test runs.
You can see the Smart UI dashboard to view the results. This will help you identify the Mismatches from the existing Baseline
build and do the required visual testing.
Fetching Screenshot Status and Results using WebHook
You can fetch the status of the screenshot captured and the results of the screenshot captured using the following webhook.
- NodeJS
- Python
- Ruby
- C#
- Java
driver.executeScript("smartui.fetchScreenshotStatus")
driver.execute_script("smartui.fetchScreenshotStatus")
driver.execute_script("smartui.fetchScreenshotStatus=<Your Screenshot Name>")
driver.ExecuteScript("smartui.fetchScreenshotStatus");
((JavascriptExecutor)driver).executeScript("smartui.fetchScreenshotStatus");
For fetching results specific to a screenshot, you can use the following webhook by adding the Screenshot Name
to the WebHook.
- NodeJS
- Python
- Ruby
- C#
- Java
driver.executeScript("smartui.fetchScreenshotStatus=<Your Screenshot Name>")
driver.execute_script("smartui.fetchScreenshotStatus=<Your Screenshot Name>")
driver.execute_script("smartui.fetchScreenshotStatus=<Your Screenshot Name>")
driver.ExecuteScript("smartui.fetchScreenshotStatus=<Your Screenshot Name>");
((JavascriptExecutor)driver).executeScript("smartui.fetchScreenshotStatus=<Your Screenshot Name>");
The following webhook will return the status of the screenshot captured. The status can be one of the following:
{
screenshotsData: [
{
screenshotName: '<Your Screenshot Name>',
screenshotURL: '<Link to the screenshot captured>',
screenshotStatus: 'Changes found', // Status of the screenshot
misMatchPercentage: 10.04, // Percentage of mismatch in the screenshot
threshold: 100, // Threshold set for the screenshot
browserName: 'chrome', // Browser used for capturing the screenshot
resolution: '1920x1080' // Resolution of the screenshot
}
../Other Screenshots
],
buildId: '<Your Build ID>',
buildName: '<Your Build Name>',
projectName: '<Name of the Project>'
}
The following are the description of the parameters:
Parameter | Description |
---|---|
screenshotName | Name of the screenshot for which the result is to be fetched. |
screenshotURL | URL of the screenshot captured. |
screenshotStatus | Status of the screenshot captured. |
misMatchPercentage | Percentage of mismatch in the screenshot captured. |
threshold | Threshold set for the screenshot captured. |
browserName | Browser used for capturing the screenshot. |
resolution | Resolution of the screenshot captured. |
buildId | ID of the build in which the screenshot was captured. |
buildName | Name of the build in which the screenshot was captured. |
projectName | Name of the project in which the screenshot was captured. |
Advanced Options for Screenshot Comparison
Build Configuration - If you have multiple screenshots running the same test suite and want to run the comparison for the same test suite, want to add a build as a baseline from your test suite or need to access more SmartUI Build Config Options, click here.
Advanced Test Settings - We offer multiple options for comparing the Baseline and the Test Output screenshots captured during your automation testing suites. To know more about our advanced P2P comparison options, click here.
Handling Dynamic Data - In case if you have any dynamic elements that are not in the same position across test runs, you can ignore or select a specific area to be removed from the comparison. For accessing such HTML DOM Config and Options, click here.