Skip to content

Commit 888062b

Browse files
Merge branch 'LambdaTest:stage' into stage
2 parents 1623e74 + f668f17 commit 888062b

File tree

7 files changed

+93
-5
lines changed

7 files changed

+93
-5
lines changed
61.6 KB
Loading
68.6 KB
Loading
40.2 KB
Loading

docs/hyperexecute-integration-with-virtual-devices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ Run your samplе tеsts on HyperExecute using our samplе Android and iOS applic
8080

8181
You can use your own project to configure and test it. For demo purposes, we are using the sample repository.
8282

83-
:::tip Sample repo
83+
<!-- :::tip Sample repo
8484
8585
Download or Clone the code sample for the Virtual Devices from the LambdaTest GitHub repository to run the tests on the HyperExecute.
8686
8787
<a href="https://github.com/LambdaTest/hyp-virtual-device-appium" className="github__anchor"><img loading="lazy" src={require('../assets/images/icons/github.png').default} alt="Image" className="doc_img"/> View on GitHub</a>
8888
89-
:::
89+
::: -->
9090

9191
## Step 2: Setup the CLI in your Test Suite
9292

docs/hyperexecute-smart-ui-sdk-selenium-csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ After creating the project, you will get your `PROJECT_TOKEN`. You need to keep
7777

7878
You can use your own project to configure and test it. For demo purposes, we are using the sample repository.
7979

80-
:::tip Sample repo
80+
<!-- :::tip Sample repo
8181
8282
Download or Clone the code sample for the Selenium - JavaScript framework from the LambdaTest GitHub repository to run the tests on the HyperExecute.
8383
8484
<a href="https://github.com/LambdaTest/hyperexecute-smartui-sdk-selenium-csharp" className="github__anchor"><img loading="lazy" src={require('../assets/images/icons/github.png').default} alt="Image" className="doc_img"/> View on GitHub</a>
8585
86-
:::
86+
::: -->
8787

8888
### Update the Dependencies
8989

docs/kane-ai-jira-integration.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
---
2+
id: kane-ai-jira-integration
3+
title: KaneAI - Jira Integration
4+
hide_title: false
5+
sidebar_label: Jira Integration
6+
description: Learn how to integrate your jira tickets with KaneAI and test planner using Atalssian Marketplace
7+
keywords:
8+
- lambdatest automation
9+
- lambdatest kaneai
10+
- kaneai scroll elements
11+
- kaneai sidebar scroll
12+
url: https://www.lambdatest.com/support/docs/kane-ai-jira-integration/
13+
site_name: LambdaTest
14+
slug: kane-ai-jira-integration/
15+
---
16+
17+
import Tabs from '@theme/Tabs';
18+
import TabItem from '@theme/TabItem';
19+
import CodeBlock from '@theme/CodeBlock';
20+
import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys";
21+
22+
<script type="application/ld+json"
23+
dangerouslySetInnerHTML={{ __html: JSON.stringify({
24+
"@context": "https://schema.org",
25+
"@type": "BreadcrumbList",
26+
"itemListElement": [{
27+
"@type": "ListItem",
28+
"position": 1,
29+
"name": "Home",
30+
"item": "https://www.lambdatest.com"
31+
},{
32+
"@type": "ListItem",
33+
"position": 2,
34+
"name": "Support",
35+
"item": "https://www.lambdatest.com/support/docs/"
36+
},{
37+
"@type": "ListItem",
38+
"position": 3,
39+
"name": "KaneAI Jira Integration",
40+
"item": "https://www.lambdatest.com/support/docs/kane-ai-jira-integration/"
41+
}]
42+
})
43+
}}
44+
></script>
45+
The "Jira integration" feature allows you to generate test cases from your Jira tickets automatically. This feature leverages AI to analyze the content of Jira tickets and transform written test case descriptions into executable test cases on the LambdaTest platform. This documentation provides a detailed guide to help you understand and utilize this feature effectively.
46+
47+
## Key Benefits of the Kane AI Jira Integration:
48+
- **Automated Test Creation :** Quickly transform test case descriptions in Jira into executable test cases without manual setup.
49+
- **Efficient QA Workflow :** Simplify testing processes by managing test creation directly from Jira, saving time and reducing errors.
50+
- **Reduced Bug Risk :** AI-powered test creation helps reduce the likelihood of bugs by ensuring all outlined test cases are covered and refined.
51+
52+
## Step-by-Step Guide
53+
### Step 1: Install LambdaTest Application for Jira
54+
Visit the Atlassian Marketplace, locate the **LambdaTest AI Cloud** application for Jira and install app on your Jira instance.
55+
56+
:::note
57+
Currently in the **Beta**. Please reach out to our <span className="doc__lt" onClick={() => window.openLTChatWidget()}>support team</span> to enable the KaneAI for your organization.
58+
:::
59+
60+
<img loading="lazy" src={require('../assets/images/kane-ai/features/jira-integration/marketplace.png').default} alt="kenai-jira integration" className="doc_img"/>
61+
62+
### Step 2: Define Test Cases in a Jira Ticket
63+
- **Create or Open a Jira Ticket :** Start by creating a Jira ticket or accessing an existing ticket where you want to outline test cases.
64+
- **Write Test Case Details :** In the comments section, add detailed information about the test cases you want to execute. Clearly describe each test case's steps, conditions, expected outcomes, and any other relevant information to help Kane AI generate accurate tests.
65+
66+
### Step 3: Generate Test Cases Using Kane AI
67+
To trigger Kane AI, add the comment to your Jira ticket calling LambdaTest application, for example:
68+
69+
```bash
70+
@LambdaTest create test case based on the details of this Jira
71+
```
72+
73+
> **Note :** This comment signals Kane AI to analyze the Jira ticket content and automatically create test cases.
74+
75+
After you post the comment, Kane AI will process the request and respond with a confirmation message. The response includes a link to LambdaTest where you can review, modify, and schedule the generated test case.
76+
77+
<img loading="lazy" src={require('../assets/images/kane-ai/features/jira-integration/jira-test-case.webp').default} alt="kenai-jira integration" className="doc_img"/>
78+
79+
### Step 4: Review and Schedule the Test Case on LambdaTest
80+
- **Access the Test Case :** Click on the link provided by Kane AI in the Jira comment. This will direct you to the [Test Planner platform](/support/docs/kane-ai-test-plan/#step-2-define-your-state-outcomes-error-messages-constraints-and-user-inputs) where the test case has been created.
81+
- **Review Test Case Details :** Check the generated test case for accuracy. You can review test steps, expected outcomes, and conditions to ensure they align with your requirements.
82+
- **Schedule Test Execution :** Once verified, schedule the test case for execution.
83+
84+
### Step 5: Check the test execution
85+
Click on the Live Preview button to enter the playground and check the live execution of your test based on your defined objective.
86+
87+
<img loading="lazy" src={require('../assets/images/kane-ai/features/jira-integration/live-preview.png').default} alt="kenai-jira integration" className="doc_img"/>

sidebars.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1033,7 +1033,8 @@ module.exports = {
10331033
items: [
10341034
"kane-ai-javascript-execution",
10351035
"kane-ai-geolocation-tunnel-proxy",
1036-
"kane-ai-scroll-in-feature"
1036+
"kane-ai-scroll-in-feature",
1037+
"kane-ai-jira-integration"
10371038
],
10381039
},
10391040
{

0 commit comments

Comments
 (0)