Welcome to the LambdaTest SmartUI Puppeteer samples repository. This guide provides detailed instructions on integrating Puppeteer with LambdaTest for automated, cloud-based testing, including visual regression testing using SmartUI. Discover how to leverage the power of Puppeteer alongside LambdaTest's extensive testing capabilities to ensure your web applications look and perform their best across a wide range of devices and browsers.
Before you begin, ensure you have the following:
- An active LambdaTest account. Sign up here if you don't have one.
- Your LambdaTest Username and Access Key, available in your LambdaTest profile.
Clone this repository to get started with SmartUI tests using Puppeteer:
git clone https://github.com/LambdaTest/smartui-puppeteer-sample.git
cd smartui-puppeteer-sample
Configure your environment with your LambdaTest credentials:
export LT_USERNAME="Your LambdaTest Username"
export LT_ACCESS_KEY="Your LambdaTest Access Key"
You, need to create a SmartUI
project at Lambdatest - SmartUI Web App. Now, you need to follow the steps below:
- Click on the
New Project
button on the top right of the webpage. - Select your
Platform type
asSDK
for runningSDK
sample test below, else you can selectPlatform type
asWeb
for runninghooks
sample. - Provide name of your choice for the project.
- Now, add
Approvers
who are required to review the changes and approve/reject the results of the tests. - (Optional) You can add
tags
of your choice such asuat
,dev
etc.. - Click on the
Get Started
button for completing the project creation. - Now, select
NodeJS
setup guide and in theStep 2
you can find the project token.
Once, you have successfully setup the project for the SmartUI
and copiec the Project Token
from the SmartUI Web App
:
export PROJECT_TOKEN="<Your Copied Project Token to be pasted here>"
Our sample tests demonstrate navigating to the LambdaTest homepage to verify the page title and conducting a full-page screenshot for visual regression testing.
Navigate to the SDK sample directory and install dependencies:
cd sdk
npm install
LambdaTest's SmartUI SDK enhances your testing with automated visual regression capabilities. Here's how to capture a full-page screenshot:
const { smartuiSnapshot } = require('@lambdatest/puppeteer-driver');
await smartuiSnapshot(page, "Your_Screenshot_Name");
Replace "Your_Screenshot_Name"
with a meaningful identifier. Screenshots are stored in LambdaTest for seamless UI comparison over time.
Execute tests locally or on the LambdaTest Automation Cloud grid:
-
For local execution:
npm run smartui-local
-
For execution on LambdaTest Automation Cloud:
npm run smartui-cloud
Visit our documentation for comprehensive SDK guides and tutorials.
Like the SDK samples, these tests navigate to the LambdaTest homepage for title verification and visual regression via screenshot.
Access the Hooks sample directory and prepare your environment:
cd hooks
npm install
Use LambdaTest's webhook for seamless visual regression testing. Capture a screenshot with:
await page.evaluate(() => {
// Replace "Your_Screenshot_Name" with the screenshot identifier
const screenshotName = "Your_Screenshot_Name";
const lambdatestAction = JSON.stringify({
action: 'smartui.takeScreenshot',
arguments: { fullPage: true, screenshotName }
});
// Execute the SmartUI action
});
Deploy your tests on the LambdaTest Automation grid with:
npm run single
Our dedicated support team is available 24/7 to assist with any questions or challenges you may encounter. Contact us anytime at support@lambdatest.com for prompt and friendly support.