Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test case manager #1090

Merged
merged 1 commit into from
Nov 20, 2024
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: 1 addition & 5 deletions docs/automated-test-cases-linked-with-test-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
id: automated-test-cases-linked-with-test-manager
title: Linking Automated Test Cases to Test Manager
hide_title: false
sidebar_label: Linking Automated Test Cases
sidebar_label: via Capabilities
description: Link your automated test cases with the test manager using the test case id and run the automation test via Autoamtion dashboard or HyperExecute
keywords:
- automated test cases
Expand Down Expand Up @@ -48,16 +48,12 @@ To link an automated test run with a specific test case, add the `tms.tc_id` key

```javascript
const capabilities = {
"browserName": "Chrome", // Specify browser name
"browserVersion": "120.0", // Specify browser version
"lt:Options": {
"tms.tc_id": "TC-1470" // Link the test execution to the Test Case ID 'TC-1470'
}
};
```

- `browserName` : Name of the browser being used for the test.
- `browserVersion` : Version of the browser.
- `lt:Options` : A JSON object containing additional options for LambdaTest configurations.
- `tms.tc_id` : The key used to link a test case in Test Manager. Replace "TC-1470" with your desired Test Case ID.

Expand Down
11 changes: 4 additions & 7 deletions docs/automated-test-cases-with-ai.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
id: automated-test-cases-with-ai
title: Automated Test Cases with AI
hide_title: true
sidebar_label: Automated Test Cases with AI
title: Managing Automated Tests with Test Manager
hide_title: false
sidebar_label: via Dashboard
description: Streamline automated test cases and Test Manager with AI on LambdaTest, enhancing software testing efficiency and workflows.
keywords:
- automated test cases
Expand Down Expand Up @@ -36,12 +36,9 @@ slug: automated-test-cases-with-ai/
})
}}
></script>

# Automated Test Cases with AI

Test Manager enables the creation and management of automated test cases directly within its platform. This feature not only streamlines test case development but also integrates AI to auto-generate BDD Scenarios from automated test runs, further optimizing the management of testing activities.

**Automated Linking of Automation Runs with Test Manager**
## Automated Linking of Automation Runs with Test Manager**

1. Initiate the automation script and once it completes, proceed to the automation dashboard. The automation test run will be visible.

Expand Down
2 changes: 1 addition & 1 deletion sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -1711,7 +1711,7 @@ module.exports = {
{
type: "category",
collapsed: true,
label: "Automated Test Cases",
label: "Linking Automated Test Cases",
items: ["automated-test-cases-with-ai", "automated-test-cases-linked-with-test-manager"],
},
{
Expand Down
Loading