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
6 changes: 2 additions & 4 deletions docs/build-options-for-visual-regression-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import TabItem from '@theme/TabItem';
"@type": "ListItem",
"position": 3,
"name": "Smart Visual Testing",
"item": "https://www.lambdatest.com/support/docs/smart-ui-cypress/"
"item": "https://www.lambdatest.com/support/docs/build-options-for-visual-regression-testing/"
}]
})
}}
Expand Down Expand Up @@ -214,9 +214,7 @@ We are provide multiple build status options for the project owners to check the
</a>
</li>
<li className="breadcrumbs__item breadcrumbs__item--active">
<span className="breadcrumbs__link">
Smart UI with Cypress
</span>
<span className="breadcrumbs__link"> Build Options for Visual Regression Testing </span>
</li>
</ul>
</nav>
1 change: 0 additions & 1 deletion docs/kaneai-smartui-visual-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
id: kaneai-smartui-visual-testing
title: Visual Test Creation with KaneAI
hide_title: false
sidebar_label: Smart Visual Test Creation
description: A step-by-step guide on using KaneAI to automate visual regression tests. Learn to capture screenshots, establish baselines, compare visual changes with SmartUI, and schedule automated runs.
keywords:
- lambdatest kaneai
Expand Down
11 changes: 8 additions & 3 deletions docs/playwright-visual-regression.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ set LT_USERNAME="YOUR_USERNAME"
set LT_ACCESS_KEY="YOUR ACCESS KEY"
```
</TabItem>
<TabItem value="PowerShell" label="PowerShell">

```powershell
$env:LT_USERNAME="YOUR_USERNAME"
$env:LT_ACCESS_KEY="YOUR ACCESS KEY"
```
</TabItem>
</Tabs>

The following steps will guide you in running your first Visual Regression test on LambdaTest platform -
Expand Down Expand Up @@ -259,9 +266,7 @@ For additional information about Playwright framework please explore the documen
</a>
</li>
<li className="breadcrumbs__item breadcrumbs__item--active">
<span className="breadcrumbs__link">
Getting Started with Selenium Visual Regression
</span>
<span className="breadcrumbs__link"> Playwright Visual Regression </span>
</li>
</ul>
</nav>
11 changes: 6 additions & 5 deletions docs/selenium-visual-regression.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,14 @@ set LT_USERNAME="YOUR_USERNAME"
set LT_ACCESS_KEY="YOUR ACCESS KEY"
```
</TabItem>
<TabItem value="Powershell" label="Windows-PS">
<TabItem value="PowerShell" label="PowerShell">

```bash
$Env:LT_USERNAME="YOUR_USERNAME"
$Env:LT_ACCESS_KEY="YOUR_ACCESS_KEY"
```powershell
$env:LT_USERNAME="YOUR_USERNAME"
$env:LT_ACCESS_KEY="YOUR ACCESS KEY"
```
</TabItem>

</Tabs>

The following steps will guide you in running your first Visual Regression test on LambdaTest platform -
Expand Down Expand Up @@ -640,7 +641,7 @@ This may take a few seconds to process the screenshot. Please ensure that you ha
</a>
</li>
<li className="breadcrumbs__item breadcrumbs__item--active">
<span className="breadcrumbs__link"> Getting Started with Selenium Visual Regression </span>
<span className="breadcrumbs__link"> Selenium Visual Regression </span>
</li>
</ul>
</nav>
13 changes: 9 additions & 4 deletions docs/smartui-appium-hooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,20 @@ Below are code examples for taking viewport screenshots using SmartUI with Appiu

```bash
export LT_USERNAME="YOUR_USERNAME"
export LT_ACCESS_KEY="YOUR ACCESS KEY"
```

</TabItem>
<TabItem value="Windows" label="Windows" default>
<TabItem value="Windows" label="Windows - CMD">

```bash
set LT_USERNAME="YOUR_USERNAME"
set LT_ACCESS_KEY="YOUR ACCESS KEY"
```

</TabItem>
<TabItem value="PowerShell" label="PowerShell">

```powershell
$env:LT_USERNAME="YOUR_USERNAME"
```

</TabItem>
Expand Down Expand Up @@ -523,7 +528,7 @@ For additional information about appium framework please explore the documentati
</a>
</li>
<li className="breadcrumbs__item breadcrumbs__item--active">
<span className="breadcrumbs__link"> Getting Started with appium Visual Regression </span>
<span className="breadcrumbs__link"> SmartUI Appium Hooks </span>
</li>
</ul>
</nav>
9 changes: 8 additions & 1 deletion docs/smartui-appium-java-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,13 @@ export PROJECT_TOKEN="123456#1234abcd-****-****-****-************"
set PROJECT_TOKEN="123456#1234abcd-****-****-****-************"
```

</TabItem>
<TabItem value="PowerShell" label="PowerShell">

```powershell
$env:PROJECT_TOKEN="123456#1234abcd-****-****-****-************"
```

</TabItem>
</Tabs>

Expand Down Expand Up @@ -314,7 +321,7 @@ For additional information about SmartUI APIs, please explore the documentation
</a>
</li>
<li className="breadcrumbs__item breadcrumbs__item--active">
<span className="breadcrumbs__link">SmartUI App SDK</span>
<span className="breadcrumbs__link"> SmartUI Appium Java SDK </span>
</li>
</ul>
</nav>
2 changes: 1 addition & 1 deletion docs/smartui-baseline-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ npx smartui --markBaseline exec -- <execution command>
```bash
# 1. Set feature branch baseline
npx smartui --baselineBranch "feature/new-login" exec -- <execution command>

```

### 2. Hotfix Management

Expand Down
15 changes: 11 additions & 4 deletions docs/smartui-basic-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import NewTag from '../src/component/newTag';
"@type": "ListItem",
"position": 3,
"name": "Smart Visual Testing",
"item": "https://www.lambdatest.com/support/docs/smart-ui-cypress/"
"item": "https://www.lambdatest.com/support/docs/smartui-basic-auth/"
}]
})
}}
Expand Down Expand Up @@ -111,15 +111,22 @@ Then set your environment variables:

```bash
export AUTH_USERNAME="your-username"
export AUTH_PASSWORD="your-password"
```

</TabItem>
<TabItem value="Windows" label="Windows" default>
<TabItem value="Windows" label="Windows - CMD">

```bash
set AUTH_USERNAME="your-username"
set AUTH_PASSWORD="your-password"
```

</TabItem>
<TabItem value="PowerShell" label="PowerShell">

```powershell
$env:AUTH_USERNAME="your-username"
```

</TabItem>
</Tabs>

Expand Down
2 changes: 1 addition & 1 deletion docs/smartui-branch-merging.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ npx smartui merge branch --source hotfix/security-patch --target staging
```bash
# 1. Ensure feature branch is approved
npx smartui merge branch --source feature/new-login --target main

```

### 2. Hotfix Strategy

Expand Down
9 changes: 5 additions & 4 deletions docs/smartui-cli-build-name.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import NewTag from '../src/component/newTag';
"@type": "ListItem",
"position": 3,
"name": "Smart Visual Testing",
"item": "https://www.lambdatest.com/support/docs/smart-ui-cypress/"
"item": "https://www.lambdatest.com/support/docs/smartui-cli-build-name/"
}]
})
}}
Expand Down Expand Up @@ -81,11 +81,12 @@ set PROJECT_TOKEN="123456#1234abcd-****-****-****-************"
```

</TabItem>
<TabItem value="Powershell" label="Windows-PS">
<TabItem value="PowerShell" label="PowerShell">

```bash
$Env:PROJECT_TOKEN="123456#1234abcd-****-****-****-************"
```powershell
$env:PROJECT_TOKEN="123456#1234abcd-****-****-****-************"
```

</TabItem>
</Tabs>

Expand Down
Loading
Loading