Skip to content

Commit 505a368

Browse files
HYP release and docs
1 parent 9f4731f commit 505a368

File tree

6 files changed

+126
-1
lines changed

6 files changed

+126
-1
lines changed
96.6 KB
Loading

docs/hyperexecute-job-reports.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,10 @@ The [Error Categorization Report](/support/docs/error-categorization-report/) re
107107
The [JUnit XML Report](/support/docs/junit-xml-report/) provides a summary of test results conducted on [Date and Time]. The tests are organized into multiple test suites, with detailed information on execution time, status, and individual test cases.
108108

109109
## Karate Report
110-
[Karate Reports](/support/docs/karate-report/) provide a comprehensive overview of your test execution results, offering detailed insights into test performance, coverage, and failures. With visually appealing and interactive HTML reports, you can quickly analyze test outcomes, debug issues, and share results across teams. These reports are seamlessly integrated into Karate's powerful testing framework, ensuring clarity and efficiency in your test automation journey.
110+
[Karate Reports](/support/docs/karate-report/) provide a comprehensive overview of your test execution results, offering detailed insights into test performance, coverage, and failures. With visually appealing and interactive HTML reports, you can quickly analyze test outcomes, debug issues, and share results across teams. These reports are seamlessly integrated into Karate's powerful testing framework, ensuring clarity and efficiency in your test automation journey.
111+
112+
## Robot Report
113+
[Robot Reports](/support/docs/robot-report/) provides a detailed summary of automated test execution using Robot Framework, including test case results, execution time, logs, and captured output. It helps analyze pass/fail trends, identify failures, and validate system functionality across environments.
114+
115+
## Katalon Consolidated HTML Report
116+
[Katalon Reports](/support/docs/hyperexecute-katalon-report/) summarizes the results of automated test executions in Katalon Studio, including test status, execution time, environment details, and error logs. It provides clear insights into test coverage, performance, and overall build quality.
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
---
2+
id: hyperexecute-katalon-report
3+
title: Katalon Consolidated HTML Report on HyperExecute
4+
hide_title: false
5+
sidebar_label: Katalon
6+
description: Learn how to generate Katalon test report for HyperExecute on lambdatest and download the reports from the dashboard
7+
keywords:
8+
- Katalon reports
9+
- hyperexecute Katalon reports
10+
- hyperexecute testing
11+
url: https://www.lambdatest.com/support/docs/hyperexecute-katalon-report/
12+
site_name: LambdaTest
13+
slug: hyperexecute-katalon-report/
14+
---
15+
16+
import NewTag from '../src/component/newTag';
17+
18+
<script type="application/ld+json"
19+
dangerouslySetInnerHTML={{ __html: JSON.stringify({
20+
"@context": "https://schema.org",
21+
"@type": "BreadcrumbList",
22+
"itemListElement": [{
23+
"@type": "ListItem",
24+
"position": 1,
25+
"name": "LambdaTest",
26+
"item": "https://www.lambdatest.com"
27+
},{
28+
"@type": "ListItem",
29+
"position": 2,
30+
"name": "Support",
31+
"item": "https://www.lambdatest.com/support/docs/"
32+
},{
33+
"@type": "ListItem",
34+
"position": 3,
35+
"name": "Katalon Reports",
36+
"item": "https://www.lambdatest.com/support/docs/hyperexecute-katalon-report/"
37+
}]
38+
})
39+
}}
40+
></script>
41+
HyperExecute provides seamless integration with Katalon Studio, enabling you to generate and view detailed execution reports directly from your test runs. These reports include details such as:
42+
43+
- Test case execution status (Pass/Fail/Skipped)
44+
- Execution time and duration
45+
- Environment and browser details
46+
- Stack traces for failed tests
47+
48+
> Ensure your project is configured with the Katalon framework and all test scripts are in place.
49+
50+
## Steps to Generate Katalon Reports on HyperExecute
51+
52+
**Step 1:** Configure all the necessary dependencies and configurations to your project.
53+
54+
**Step 2:** Configure the report parameters in the HyperExecute YAML file
55+
56+
Add the following configurations in your YAML file:
57+
58+
```yaml
59+
report: true
60+
partialReports:
61+
type: html
62+
location: Reports/
63+
frameworkName: katalon
64+
```
65+
66+
**Step 3:** Now execute your job by triggering the HyperExecute CLI. You can visit the HyperExecute dashboard to download the report after job completion.
67+
68+
<img loading="lazy" src={require('../assets/images/hyperexecute/release-notes/katalon-report.png').default} alt="Image" className="doc_img"/>
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
id: hyperexecute-release-notes-3-1-0
3+
title: Version 3.1.0
4+
hide_title: false
5+
sidebar_label: Version 3.1.0
6+
description: Version 3.1.0
7+
keywords:
8+
- LambdaTest Hyperexecute
9+
- LambdaTest Hyperexecute help
10+
- LambdaTest Hyperexecute documentation
11+
- FAQs
12+
url: https://www.lambdatest.com/support/docs/hyperexecute-release-notes-3-1-0/
13+
site_name: LambdaTest
14+
slug: hyperexecute-release-notes-3-1-0/
15+
---
16+
17+
import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys";
18+
19+
<script type="application/ld+json"
20+
dangerouslySetInnerHTML={{ __html: JSON.stringify({
21+
"@context": "https://schema.org",
22+
"@type": "BreadcrumbList",
23+
"itemListElement": [{
24+
"@type": "ListItem",
25+
"position": 1,
26+
"name": "Home",
27+
"item": "https://www.lambdatest.com"
28+
},{
29+
"@type": "ListItem",
30+
"position": 2,
31+
"name": "Support",
32+
"item": "https://www.lambdatest.com/support/docs/"
33+
},{
34+
"@type": "ListItem",
35+
"position": 3,
36+
"name": "Version",
37+
"item": "https://www.lambdatest.com/support/docs/hyperexecute-release-notes-3-1-0/"
38+
}]
39+
})
40+
}}
41+
></script>
42+
HyperExecute now supports **Katalon Consolidated HTML Report** generation, including all new report formats introduced in Katalon Studio 10 and above with the following support:
43+
- **Seamless Katalon Report Integration:** You can now generate Katalon HTML reports directly within your HyperExecute workflow.
44+
- **Support for Latest Report Structure:** HyperExecute is fully compatible with the new report schema and format updates introduced in Katalon Studio 10+.
45+
46+
<img loading="lazy" src={require('../assets/images/hyperexecute/release-notes/katalon-report.png').default} alt="Image" className="doc_img"/>
47+
48+
> 📘 Refer to our [Katalon Consolidated HTML Report Generation Guide](/support/docs/hyperexecute-katalon-report/) for a detailed setup walkthrough and examples.

docs/hyperexecute-release-notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ HyperExecute is an AI Native Test Orchestration Cloud Platform, enabling test au
5959
#### October, 2025
6060
| Release Number | Release Date |
6161
|----------------|--------------|
62+
| [Version 3.1.0](/support/docs/hyperexecute-release-notes-3-1-0) | Oct 27, 2025|
6263
| [Version 3.0.8](/support/docs/hyperexecute-release-notes-3-0-8) | Oct 13, 2025|
6364

6465
#### September, 2025

sidebars.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -818,6 +818,7 @@ module.exports = {
818818
"junit-xml-report",
819819
"karate-report",
820820
"robot-report",
821+
"hyperexecute-katalon-report"
821822
],
822823
},
823824

@@ -930,6 +931,7 @@ module.exports = {
930931
collapsed: true,
931932
label: "October, 2025",
932933
items: [
934+
"hyperexecute-release-notes-3-1-0",
933935
"hyperexecute-release-notes-3-0-8",
934936
],
935937
},

0 commit comments

Comments
 (0)