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>
import io.github.lambdatest.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();
npm i @lambdatest/smartui-cli
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");
}
}