Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/smartui-app-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,10 @@ public class YourTestClass {
// Configure screenshot settings
Map<String, String> ssConfig = new HashMap<>();
// Either use environment variable
// ssConfig.put("projectToken", "your-project-token-here"); // Use this if you are not setting the project token in environment variable
ssConfig.put("projectToken", "your-project-token-here"); // Use this if you are not setting the project token in environment variable
// ssConfig.put("buildName", "First Build"); // Optional
ssConfig.put("deviceName", "iPhone 15"); // Required, you can use the variables that you are setting in the cloud capabilities
ssConfig.put("buildName", "First Build"); // Optional

ssConfig.put("platform", "iOS"); // Optional,you can use the variables that you are setting in the cloud capabilities

try {
Expand Down
2 changes: 1 addition & 1 deletion docs/smartui-selenium-java-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ git clone https://github.com/LambdaTest/smartui-java-testng-sample
<dependency>
<groupId>io.github.lambdatest</groupId>
<artifactId>lambdatest-java-sdk</artifactId>
<version>1.0.8</version>
<version>1.0.7</version>
</dependency>
```

Expand Down
Loading