Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 1.44 KB

README.md

File metadata and controls

63 lines (44 loc) · 1.44 KB

LambdaTest Java SDK

Run the following command to install the dependencies of the project mentioned in pom.xml:

mvn clean install

Set the required environment variables:

export PROJECT_TOKEN=<add-your-project-token>
export LT_ACCESS_KEY=<add-your-access-key>
export LT_USERNAME=<add-your-username>

Usage

To Take SmartUI App Snapshot

import io.github.lambdatest.SmartUIAppSnapshot;

1. Create an Object of SmartUIAppSnapshot

        SmartUIAppSnapshot smartUIAppSnapshot = new SmartUIAppSnapshot();
        Map<String, String> screenshotConfig = new HashMap<>();
        screenshotConfig.put("deviceName","Google pixel 9");
        screenshotConfig.put("platform","Android 15");

        smartUIAppSnapshot.start(); 
        smartUIAppSnapshot.smartuiAppSnapshot(driver, "screenshot1", screenshotConfig);
        smartUIAppSnapshot.stop();
    

To Take SmartUI Snapshot

1. Install the smartui-cli Dependencies

npm i @lambdatest/smartui-cli

2. Create and Configure SmartUI Config

npx smartui config:create smartui-web.json
import io.github.lambdatest.SmartUISnapshot;

public class SmartUISDK {

    private RemoteWebDriver driver;

    @Test
    public void basicTest() throws Exception {
        driver.get("https://www.lambdatest.com/support/docs/smartui-selenium-java-sdk");
        SmartUISnapshot.smartuiSnapshot(driver, "visual-regression-testing");
    }

}