Skip to content

Commit 09b203c

Browse files
committed
EPMRPP-116485 || Add section with Agentic results
1 parent 2dd8124 commit 09b203c

7 files changed

Lines changed: 79 additions & 8 deletions

File tree

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
sidebar_position: 4
3+
sidebar_label: Agentic test results
4+
description:
5+
---
6+
7+
# Agentic test results
8+
9+
From version [26.0.3](https://github.com/reportportal/reportportal/releases/tag/26.0.3) ReportPortal opened the doors to the Agentic testing results.
10+
11+
## How to report
12+
13+
To ensure the visibility of your AI testing workflows, build the integration with ReportPortal in the following ways:
14+
15+
### Programmatically
16+
17+
By using our [guides](./ImplementOwnIntegration.md) and [SDKs](./ReportingSDK.md) for various programming languages.
18+
19+
### Using agent skills
20+
21+
Coming soon...
22+
23+
You can start playing around with [goRP cli](https://github.com/reportportal/goRP/blob/master/.cursor/skills/reportportal/SKILL.md).
24+
25+
:::tip
26+
To [distinguish](../work-with-reports/ViewLaunches.mdx#launches-tab) the agentic launches from the classic automation in ReportPortal, just send the next attribute on launch start:
27+
```json
28+
{
29+
"key": "isAgentic",
30+
"value": true,
31+
"system": true
32+
}
33+
```
34+
:::
35+
36+
## Integration showcase
37+
38+
The [AgenticQA](https://test.io/ai-in-qa/agentic-qa) testing platform supports the integration with ReportPortal and able to report evidences from AI agent testing sessions in the realtime.
39+
40+

docs/log-data-in-reportportal/HowToRunYourTests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to run your tests with ReportPortal test automation repor
55

66
# How to run your tests
77

8-
Automated tests can be executed in the any CI tool you are using on the project (Jenkins, Bamboo, Azure DevOps, GitHub Actions, CircleCI, TeamCity, GitLab, Travis CI, Codeship, Buddy, GoCD, Wercker and more).
8+
Automated tests can be executed in any CI tool you are using on the project (Jenkins, Bamboo, Azure DevOps, GitHub Actions, CircleCI, TeamCity, GitLab, Travis CI, Codeship, Buddy, GoCD, Wercker and more).
99
It doesn't require any settings from ReportPortal.
1010

1111
So that the test results get into the ReportPortal, you need to perform [test framework integration](/log-data-in-reportportal/test-framework-integration/) or [implement own integration](/log-data-in-reportportal/ImplementOwnIntegration).
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
---
2-
sidebar_position: 2
2+
sidebar_position: 1
33
sidebar_label: Implement own integration
44
description: Learn how to implement custom integration with ReportPortal using the developer guide.
55
---
66

77
# Implement own integration
88

9+
Willing to build your own integration with ReportPortal?
10+
911
You can find a detailed description of how report results to ReportPortal in our [developers` guide](/developers-guides/ReportingDevelopersGuide).
1012

1113
Based on this information you can create your integration with a test framework.
1214

15+
Consider using our [Reporting SDKs](./ReportingSDK.md) for different programming languages.
16+
1317
:::note
1418
We can propose a paid support for integration with a new framework or supporting an existing one. If you need more details, please drop a letter on support@reportportal.io.
1519
:::

docs/log-data-in-reportportal/ImportDataToReportPortal.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
sidebar_position: 4
2+
sidebar_position: 5
33
sidebar_label: Import data to ReportPortal
44
description: Import test logs into ReportPortal using the UI or API, supporting JUnit and RobotFramework formats for streamlined test data integration.
55
---
Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,33 @@
11
---
2-
sidebar_position: 3
2+
sidebar_position: 2
33
sidebar_label: Reporting SDK
4-
description: Integrate your test framework with ReportPortal using the Reporting SDK to log detailed test data, including nested steps and test case IDs, for enhanced reporting.
4+
description: Integrate your test framework with ReportPortal using the Reporting SDKs to log detailed test data, including nested steps and test case IDs, for enhanced reporting.
55
---
66

77
# Reporting SDK
88

9+
There are reporting SDKs for different programming languages covering the essentials to build the integration with ReportPortal from scratch.
10+
11+
## Java
12+
13+
[client-java](https://github.com/reportportal/client-java)
14+
15+
## C# (.NET)
16+
17+
[client-dotnet](https://github.com/reportportal/client-dotnet)
18+
19+
## JavaScript
20+
21+
[client-javascript](https://github.com/reportportal/client-javascript)
22+
23+
## Python
24+
25+
[client-python](https://github.com/reportportal/client-Python)
26+
27+
## Feature guides
28+
29+
### Nested steps
30+
931
How to report tests with nested steps?
1032

1133
**JAVA**
@@ -15,7 +37,11 @@ How to report tests with nested steps?
1537
**.NET**
1638
* https://github.com/reportportal/commons-net/blob/master/docs/Logging.md
1739

18-
How to report tests with Test case ID. How to add TestID from your Test Management System to reported execution.
40+
### Test case id
41+
42+
How to report tests with Test case ID.
43+
How to add TestID from your Test Management System to reported execution.
1944

45+
**JAVA**
2046
* https://github.com/reportportal/client-java/wiki/Test-case-ID
2147
* https://github.com/reportportal/client-java/wiki/Test-case-ID-Key

docs/log-data-in-reportportal/test-framework-integration/index.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
sidebar_label: Test Framework Integration
3+
sidebar_position: 3
34
description: Integrate your test framework with ReportPortal. Configure agents, send results, and enrich logs, attachments, and attributes for a clear automation test report.
45
---
56

docs/work-with-reports/ViewLaunches.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ A typical Launch structure comprises the following elements: **Suite** \> **Test
2828

2929
Launches are categorized into two types:
3030

31-
* AGENTIC – launches reported via AI agent (by adding system attribute 'isAgentic':true on Agent side on launch start request)
32-
* AUTOMATION - launches reported via Test frameworks agents
31+
* AGENTIC – launches reported by [AI agents](../log-data-in-reportportal/AgenticTestResults.md).
32+
* AUTOMATION - launches reported via [Test frameworks integrations](../log-data-in-reportportal/test-framework-integration).
3333

3434
Agentic launches are visually marked on the Launches page with an **Agentic** badge.
3535

0 commit comments

Comments
 (0)