Skip to content

Commit 3b8961b

Browse files
authored
Merge pull request #1077 from Aman1905/stage
emulator simulator docs
2 parents 45fb856 + eaa9e08 commit 3b8961b

File tree

6 files changed

+38
-133
lines changed

6 files changed

+38
-133
lines changed

docs/espresso-supported-capabilities.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/co
4646

4747
This document provide details about the features and capabilities supported for Espresso Framework on LambdaTest.
4848

49+
> The capabilities listed in this document are also supported for [Virtual Devices](/support/docs/app-automation-on-emulators-simulators/)
50+
4951
| Capability Name | Data Type | Description |
5052
|------|-----------|-------------|
5153
| app | String | Enter the app id generated while uploading the app to the platform. Example:`lt://APP123456789123456789` |

docs/junit-report.md

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -45,39 +45,23 @@ import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/co
4545
}}
4646
></script>
4747

48-
---
49-
50-
## Introduction
51-
---
52-
5348
JUnit reports provide a detailed summary of test execution, allowing you to better understand your test outcomes. This document aims to guide you through the process of retrieving JUnit reports for Espresso tests executed on the LambdaTest platform.
5449

55-
## Objective
56-
---
57-
### By the end of this document, you should be able to:
58-
59-
1. Fetch JUnit reports for non-shard Espresso builds.
60-
61-
2. Fetch JUnit reports for shard builds, both for individual shards and all shards collectively.
50+
> This feature is also supported for [Virtual Devices](/support/docs/app-automation-on-emulators-simulators/)
6251
52+
## JUnit Report APIs
6353

64-
65-
## JUnit report APIs
66-
----
67-
68-
**Non-shard build :**
54+
### Non-shard build
6955
To fetch the JUnit report for a `non-shard` build, you can use the following cURL command:
7056

71-
7257
<div className="lambdatest__codeblock">
7358
<CodeBlock className="language-bash">
7459
{`curl --location "https://mobile-api.lambdatest.com/mobile-automation/api/v1/framework/builds/<build_id>/report/?encoder=false" \
7560
--header 'Authorization: Basic <Base64 Authentication>'`}
7661
</CodeBlock>
7762
</div>
7863

79-
80-
**Shard build (For single shard):**
64+
### Shard build (For single shard)
8165
To fetch the JUnit report for a `single shard` in a shard build,use:
8266

8367
<div className="lambdatest__codeblock">
@@ -88,7 +72,7 @@ To fetch the JUnit report for a `single shard` in a shard build,use:
8872
</div>
8973

9074

91-
**Shard build (For all the shards):**
75+
### Shard build (For all the shards)
9276
To fetch the JUnit reports for `all shards` in a shard build, use:
9377

9478
<div className="lambdatest__codeblock">
@@ -98,8 +82,6 @@ To fetch the JUnit reports for `all shards` in a shard build, use:
9882
</CodeBlock>
9983
</div>
10084

101-
102-
10385
:::note
10486
- Authenticate the API using your LambdaTest username and access key, and replace `build_id`, `job_id` and `shard_id` for which you want to fetch report.
10587
- It is recommended to run the sharding test(via HyperExecute CLI) in the verbose mode i.e. with the **--verbose** flag. This allows the shard ID(task ID) and build ID(Job ID) to be displayed in the logs and then they can be used to fetch the above reports.

docs/sharding-espresso.md

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ import TabItem from '@theme/TabItem';
4747
})
4848
}}
4949
></script>
50-
51-
5250
Running **Espresso** tests sequentially can be laborious and time-intensive. This guide offers an efficient solution by introducing the concept of **sharding**. By breaking down tests into shards, they can be executed in parallel, significantly trimming down the total testing duration.
5351

5452
Furthermore, this document provides insights on executing Espresso Tests on real devices using the innovative **HyperExecute** platform. Designed with precision, HyperExecute stands out as a test orchestration solution, tailored to execute end-to-end tests at breakneck speed. To streamline its setup and configuration, a user-friendly `YAML` file is employed. Dive into this guide to make your testing process more agile and efficient.
@@ -57,19 +55,9 @@ Furthermore, this document provides insights on executing Espresso Tests on real
5755
You can learn more about the HyperExecute portal and UI by going through our [Guided Walkthrough](/support/docs/hyperexecute-guided-walkthrough/) page. It contains all the relevant information that you need to optimize your testing process with HyperExecute.
5856
:::
5957

60-
## Objectives
61-
62-
---
63-
64-
By the end of this topic, you will be able to:
65-
1. Speed up your Espresso tests with sharding
66-
2. Learn more about HyperExecute
67-
3. Explore advanced features of LambdaTest
58+
> This feature is also supported for [Virtual Devices](/support/docs/app-automation-on-emulators-simulators/)
6859
6960
## Prerequisites
70-
71-
---
72-
7361
Before you start performing your App automation testing with Espresso, please make sure:
7462

7563
- You have access to LambdaTest username and accessKey. If you have not registered yet, you can do the same by visiting our [website](https://accounts.lambdatest.com/register). You will be able to access the credentials at the [LambdaTest Profile](https://accounts.lambdatest.com/detail/profile)
@@ -113,14 +101,9 @@ Here is an example cURL request to upload your app using our REST API:
113101
</TabItem>
114102
</Tabs>
115103

116-
117-
118104
>Response of above cURL will be a **JSON** object containing the `App URL` of the format - `lt://APP123456789123456789` and will be used in the last step as `appId`.
119105
120-
121-
122106
### Step 2: Uploading Test Suite
123-
124107
Upload your **test suite** (.apk file) to the LambdaTest servers using our **REST API**. You need to provide your **Username** and **AccessKey** in the format `Username:AccessKey` in the **cURL** command for authentication. Make sure to add the path of the **appFile** in the cURL request. Here is an example cURL request to upload your app using our REST API:
125108

126109
**Using App File:**
@@ -154,11 +137,7 @@ Upload your **test suite** (.apk file) to the LambdaTest servers using our **RES
154137

155138
>Response of above cURL will be a **JSON** object containing the `App URL` of the format - `lt://APP123456789123456789` and will be used in the next step as ``testSuiteAppId``
156139
157-
158140
## How to use Sharding
159-
160-
---
161-
162141
1. Firstly, create a folder on your local.
163142
2. Download the **HyperExecute CLI** file and put it under this folder based on your platform.
164143
#### Download HyperExecute CLI
@@ -177,7 +156,7 @@ Sharding can be categorized into two types:
177156

178157
Refer to the sample `.yaml` file here
179158

180-
```bash title="SampleYamlFile.yaml"
159+
```yaml title="SampleYamlFile.yaml"
181160
version: "0.2"
182161
concurrency: 2
183162
runson: android
@@ -238,14 +217,11 @@ If you are using the `deviceSelectionStrategy: any`, then in that case all the m
238217
**For example:** If there are 2 shards mentioned in `.yaml`and 3 devices mentioned, the system will create 2 shards. These shards might use any 2 devices from the given 3 configurations. It's also possible that the same device configuration could be used for both shards. In this setup, test cases will be distributed between these shards.
239218
:::
240219

241-
---
242-
243-
244220
**Auto Sharding** : The system intelligently determines the distribution of tests across devices, employing specific criteria to optimize the testing process.
245221

246222
Refer to the sample `.yaml` file here
247223

248-
```bash title="SampleYamlFile.yaml"
224+
```yaml title="SampleYamlFile.yaml"
249225
version: "0.2"
250226
concurrency: 2
251227
runson: android
@@ -289,8 +265,6 @@ If you are using the `deviceSelectionStrategy: any`, then in that case all the s
289265
**For example:** If the concurrency is set to 2 and 3 devices mentioned, the system will create 2 shards. These shards might use any 2 devices from the given 3 configurations. It's also possible that the same device configuration could be used for both shards. In this setup, test cases will be distributed between these shards.
290266
:::
291267

292-
293-
294268
4. Go to the location of the folder on the terminal and run the below commands. After the second command, you may need to give permission on **System Settings/Privacy & Security**.
295269

296270
```bash
@@ -332,8 +306,6 @@ This example will fetch all the test cases from 2 classes and 1 package as defin
332306

333307
## Additional Links
334308

335-
---
336-
337309
- [Advanced Configuration for Capabilities](https://www.lambdatest.com/support/docs/desired-capabilities-in-appium/)
338310
- [How to test locally hosted apps](https://www.lambdatest.com/support/docs/testing-locally-hosted-pages/)
339311
- [How to integrate LambdaTest with CI/CD](https://www.lambdatest.com/support/docs/integrations-with-ci-cd-tools/)

docs/supported-appium-versions-on-emulator-simulator.md

Lines changed: 21 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -53,33 +53,17 @@ LambdaTest offers a powerful and reliable cloud-based platform for testing mobil
5353
## 1. App Testing on Android and iOS
5454
Mobile app testing on LambdaTest emulators and simulators allows developers to ensure their applications perform as expected across multiple Android and iOS versions. Below are the supported versions for app testing.
5555

56-
### 1.1 Supported Android Versions for App Testing
57-
The following table lists the Android versions supported for app testing, along with the corresponding Appium versions.
56+
The following table lists the supported versionsn of Appium for Emulators (Android) and Simulators (iOS).
5857

59-
| Android Versions | Supported Appium Versions (Android) |
60-
|------------------|-------------------------------------|
61-
| 7 | ['2.2.1', '2.3.0'] |
62-
| 8 | ['2.2.1', '2.3.0'] |
63-
| 9 | ['2.2.1', '2.3.0'] |
64-
| 10 | ['2.2.1', '2.3.0'] |
65-
| 11 | ['2.2.1', '2.3.0'] |
66-
| 12 | ['2.2.1', '2.3.0'] |
67-
| 13 | ['2.2.1', '2.3.0'] |
68-
| 14 | ['2.2.1', '2.3.0'] |
69-
| 15 | ['2.2.1', '2.3.0'] |
70-
71-
### 1.2 Supported iOS Versions for App Testing
72-
The following table lists the iOS versions supported for app testing, along with the corresponding Appium versions.
73-
74-
| iOS Versions | Supported Appium Versions (iOS) |
75-
|--------------|---------------------------------|
76-
| 12 | ['2.2.1', '2.3.0'] |
77-
| 13 | ['2.2.1', '2.3.0'] |
78-
| 14 | ['2.2.1', '2.3.0'] |
79-
| 15 | ['2.2.1', '2.3.0'] |
80-
| 16 | ['2.2.1', '2.3.0'] |
81-
| 17 | ['2.2.1', '2.3.0'] |
82-
| 18 | ['2.2.1', '2.3.0'] |
58+
| Appium Version | Platform |
59+
|----------------|----------|
60+
| 1.21.0 | Android Emulator|
61+
| 1.22.3 **(default)** | Android Emulator|
62+
| 2.0.0 | Android Emulator|
63+
| 2.1.3 | Android Emulator|
64+
| 1.22.3 **(default)** | iOS Simulator |
65+
| 2.0.0 | iOS Simulator|
66+
| 2.1.3 | iOS Simulator|
8367

8468
## 2. Web Testing on Android <!-- and iOS -->
8569
For mobile web testing, LambdaTest supports various Android <!--and iOS device--> versions, ensuring that your web applications are responsive and compatible with different browsers and devices. Below are the supported versions for web testing.
@@ -89,30 +73,14 @@ The following table lists the Android versions supported for web testing, along
8973

9074
| Android Versions | Appium Versions (Android) |
9175
|------------------|-----------------------------------------|
92-
| 7 | [`1.17.0`, `1.17.1`, `1.18.0`, `1.19.1`, `1.20.0`, `1.20.1`, `1.20.2`, `1.21.0`, `1.22.0`, `1.22.1`, `1.22.2`, `1.22.3` **(default)**] |
93-
| 7.1 | [`1.17.0`, `1.17.1`, `1.18.0`, `1.19.1`, `1.20.0`, `1.20.1`, `1.20.2`, `1.21.0`, `1.22.0`, `1.22.1`, `1.22.2`, `1.22.3` **(default)**] |
94-
| 8 | [`1.17.0`, `1.17.1`, `1.18.0`, `1.19.0`, `1.19.1`, `1.20.0`, `1.20.1`, `1.20.2`, `1.21.0`, `1.22.0`, `1.22.1`, `1.22.2`, `1.22.3` **(default)**] |
95-
| 8.1 | [`1.17.0`, `1.17.1`, `1.18.0`, `1.19.1`, `1.20.0`, `1.20.1`, `1.20.2`, `1.21.0`, `1.22.0`, `1.22.1`, `1.22.2`, `1.22.3` **(default)**] |
96-
| 9 | [`1.17.0`, `1.17.1`, `1.18.0`, `1.19.0`, `1.19.1`, `1.20.0`, `1.20.1`, `1.20.2`, `1.21.0`, `1.22.0`, `1.22.1`, `1.22.2`, `1.22.3` **(default)**] |
97-
| 10 | [`1.17.0`, `1.17.1`, `1.18.0`, `1.19.0`, `1.19.1`, `1.20.0`, `1.20.1`, `1.20.2`, `1.21.0`, `1.22.0`, `1.22.1`, `1.22.2`, `1.22.3` **(default)**] |
98-
| 11 | [`1.17.0`, `1.17.1`, `1.18.0`, `1.19.0`, `1.19.1`, `1.20.0`, `1.20.1`, `1.20.2`, `1.21.0`, `1.22.0`, `1.22.1`, `1.22.2`, `1.22.3` **(default)**] |
99-
| 12 | [`1.17.0`, `1.17.1`, `1.18.0`, `1.19.0`, `1.19.1`, `1.20.0`, `1.20.1`, `1.20.2`, `1.21.0`, `1.22.0`, `1.22.1`, `1.22.2`, `1.22.3` **(default)**, `2.0.1`, `2.1.0`, `2.1.1`, `2.1.2`, `2.1.3`, `2.2.0`, `2.2.1`, `2.2.2`, `2.2.3`, `2.3.0`, `2.4.0`, `2.4.1`, `2.5.0`, `2.5.1`, `2.5.2`, `2.5.3`, `2.5.4`, `2.6.0`] |
100-
| 13 | [`1.17.0`, `1.17.1`, `1.18.0`, `1.19.0`, `1.19.1`, `1.20.0`, `1.20.1`, `1.20.2`, `1.21.0`, `1.22.0`, `1.22.1`, `1.22.2`, `1.22.3`, `2.0.1`, `2.1.0`, `2.1.1`, `2.1.2`, `2.1.3`, `2.2.0`, `2.2.1`, `2.2.2`, `2.2.3`, `2.3.0`, `2.4.0`, `2.4.1`, `2.5.0`, `2.5.1`, `2.5.2`, `2.5.3`, `2.5.4`, `2.6.0` **(default)**] |
101-
| 14 | [`1.17.0`, `1.17.1`, `1.18.0`, `1.19.0`, `1.19.1`, `1.20.0`, `1.20.1`, `1.20.2`, `1.21.0`, `1.22.0`, `1.22.1`, `1.22.2`, `1.22.3`, `2.0.1`, `2.1.0`, `2.1.1`, `2.1.2`, `2.1.3`, `2.2.0`, `2.2.1`, `2.2.2`, `2.2.3`, `2.3.0`, `2.4.0`, `2.4.1`, `2.5.0`, `2.5.1`, `2.5.2`, `2.5.3`, `2.5.4`, `2.6.0` **(default)**] |
102-
| 15 | [`1.22.3`, `2.0.1`, `2.1.0`, `2.2.0`, `2.3.0`, `2.4.0`, `2.5.0`, `2.6.0` **(default)**] |
103-
104-
<!-- ### 2.2 Supported iOS Versions for Web Testing
105-
The following table lists the iOS versions supported for web testing, along with the corresponding Appium versions.
106-
107-
| iOS Versions | Appium Versions (iOS) |
108-
|--------------|-----------------------------------------|
109-
| 8.1 | ['1.12.1', '1.17.0', '1.22.3', '2.6.0'] |
110-
| 10.3 | ['1.12.1', '1.17.0', '1.22.3', '2.6.0'] |
111-
| 11.0 | ['1.12.1', '1.17.0', '1.22.3', '2.6.0'] |
112-
| 12.0 | ['1.12.1', '1.17.0', '1.22.3', '2.6.0'] |
113-
| 13.0 | ['1.12.1', '1.17.0', '1.22.3', '2.6.0'] |
114-
| 14.1 | ['1.12.1', '1.17.0', '1.22.3', '2.6.0'] |
115-
| 15.0 | ['1.12.1', '1.17.0', '1.22.3', '2.6.0'] |
116-
| 16.0 | ['1.12.1', '1.17.0', '1.22.3', '2.6.0'] |
117-
| 17.0 | ['1.12.1', '1.17.0', '1.22.3', '2.6.0'] |
118-
| 18.0 | ['1.12.1', '1.17.0', '1.22.3', '2.6.0'] | -->
76+
| 7 | ['1.17.0', '1.17.1', '1.18.0', '1.19.1', '1.20.0', '1.20.1', '1.20.2', '1.21.0', '1.22.0', '1.22.1', '1.22.2', '1.22.3' **(default)**] |
77+
| 7.1 | ['1.17.0', '1.17.1', '1.18.0', '1.19.1', '1.20.0', '1.20.1', '1.20.2', '1.21.0', '1.22.0', '1.22.1', '1.22.2', '1.22.3' **(default)**] |
78+
| 8 | ['1.17.0', '1.17.1', '1.18.0', '1.19.0', '1.19.1', '1.20.0', '1.20.1', '1.20.2', '1.21.0', '1.22.0', '1.22.1', '1.22.2', '1.22.3' **(default)**] |
79+
| 8.1 | ['1.17.0', '1.17.1', '1.18.0', '1.19.1', '1.20.0', '1.20.1', '1.20.2', '1.21.0', '1.22.0', '1.22.1', '1.22.2', '1.22.3' **(default)**] |
80+
| 9 | ['1.17.0', '1.17.1', '1.18.0', '1.19.0', '1.19.1', '1.20.0', '1.20.1', '1.20.2', '1.21.0', '1.22.0', '1.22.1', '1.22.2', '1.22.3' **(default)**] |
81+
| 10 | ['1.17.0', '1.17.1', '1.18.0', '1.19.0', '1.19.1', '1.20.0', '1.20.1', '1.20.2', '1.21.0', '1.22.0', '1.22.1', '1.22.2', '1.22.3' **(default)**] |
82+
| 11 | ['1.17.0', '1.17.1', '1.18.0', '1.19.0', '1.19.1', '1.20.0', '1.20.1', '1.20.2', '1.21.0', '1.22.0', '1.22.1', '1.22.2', '1.22.3' **(default)**] |
83+
| 12 | ['1.17.0', '1.17.1', '1.18.0', '1.19.0', '1.19.1', '1.20.0', '1.20.1', '1.20.2', '1.21.0', '1.22.0', '1.22.1', '1.22.2', '1.22.3' **(default)**, '2.0.1', '2.1.0', '2.1.1', '2.1.2', '2.1.3', '2.2.0', '2.2.1', '2.2.2', '2.2.3', '2.3.0', '2.4.0', '2.4.1', '2.5.0', '2.5.1', '2.5.2', '2.5.3', '2.5.4', '2.6.0'] |
84+
| 13 | ['1.17.0', '1.17.1', '1.18.0', '1.19.0', '1.19.1', '1.20.0', '1.20.1', '1.20.2', '1.21.0', '1.22.0', '1.22.1', '1.22.2', '1.22.3', '2.0.1', '2.1.0', '2.1.1', '2.1.2', '2.1.3', '2.2.0', '2.2.1', '2.2.2', '2.2.3', '2.3.0', '2.4.0', '2.4.1', '2.5.0', '2.5.1', '2.5.2', '2.5.3', '2.5.4', '2.6.0' **(default)**] |
85+
| 14 | ['1.17.0', '1.17.1', '1.18.0', '1.19.0', '1.19.1', '1.20.0', '1.20.1', '1.20.2', '1.21.0', '1.22.0', '1.22.1', '1.22.2', '1.22.3', '2.0.1', '2.1.0', '2.1.1', '2.1.2', '2.1.3', '2.2.0', '2.2.1', '2.2.2', '2.2.3', '2.3.0', '2.4.0', '2.4.1', '2.5.0', '2.5.1', '2.5.2', '2.5.3', '2.5.4', '2.6.0' **(default)**] |
86+
| 15 | ['1.22.3', '2.0.1', '2.1.0', '2.2.0', '2.3.0', '2.4.0', '2.5.0', '2.6.0' **(default)**] |

docs/xcui-supported-capibilities.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/co
4646

4747
This document provide details about the features and capabilities supported for XCUI Framework on LambdaTest.
4848

49+
> The capabilities listed in this document are also supported for [Virtual Devices](/support/docs/app-automation-on-emulators-simulators/)
50+
4951
| Capability Name | Data Type | Description |
5052
|------|-----------|-------------|
5153
| app | String | Enter the app id generated while uploading the app to the platform. Example:`lt://APP123456789123456789` |
@@ -59,7 +61,7 @@ This document provide details about the features and capabilities supported for
5961
| build | String | To set the Espresso build name. Example: `build: My Espresso Build`. |
6062
| geoLocation | String | Set the geolocation country code if you want to enable the same in your test. Example - `geoLocation: FR`|
6163
| tunnel, tunnelName | Boolean | To activate the tunnel mode, pass the value as `tunnel: true` and provide the name of your tunnel as `tunnelName: NewTunnel` |
62-
| resignApp | Boolean | Set this to `false` if you want to to prevent the apps from being re-signed. The app should be built for enterprise distribution. |
64+
| resignApp <br /> <br />Not supported in **Virtual Devices** | Boolean | Set this to `false` if you want to to prevent the apps from being re-signed. The app should be built for enterprise distribution. |
6365

6466
:::caution Important
6567
You can either use **GeoLocation** or **Tunnel** in single execute command. They both are mutually exclusive.

docs/xcui-xml-report.md

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -44,40 +44,22 @@ import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/co
4444
})
4545
}}
4646
></script>
47-
48-
---
49-
50-
## Introduction
51-
---
52-
5347
XML reports provide a detailed summary of test execution, allowing you to better understand your test outcomes. This document aims to guide you through the process of retrieving XML reports for XCUI tests executed on the LambdaTest platform.
5448

55-
## Objective
56-
---
57-
### By the end of this document, you should be able to:
58-
59-
1. Fetch XML reports for non-shard XCUI builds.
60-
61-
2. Fetch XML reports for shard builds, both for individual shards and all shards collectively.
62-
63-
49+
> This feature is also supported for [Virtual Devices](/support/docs/app-automation-on-emulators-simulators/)
6450
6551
## XML report APIs
66-
----
67-
68-
**Non-shard build :**
52+
### Non-shard build
6953
To fetch the XML report for a `non-shard` build, you can use the following cURL command:
7054

71-
7255
<div className="lambdatest__codeblock">
7356
<CodeBlock className="language-bash">
7457
{`curl --location "https://mobile-api.lambdatest.com/mobile-automation/api/v1/framework/builds/<build_id>/report/?encoder=false" \
7558
--header 'Authorization: Basic <Base64 Authentication>'`}
7659
</CodeBlock>
7760
</div>
7861

79-
80-
**Shard build (For single shard):**
62+
### Shard build (For single shard)
8163
To fetch the XML report for a `single shard` in a shard build,use:
8264

8365
<div className="lambdatest__codeblock">
@@ -87,8 +69,7 @@ To fetch the XML report for a `single shard` in a shard build,use:
8769
</CodeBlock>
8870
</div>
8971

90-
91-
**Shard build (For all the shards):**
72+
### Shard build (For all the shards)
9273
To fetch the XML reports for `all shards` in a shard build, use:
9374

9475
<div className="lambdatest__codeblock">
@@ -98,8 +79,6 @@ To fetch the XML reports for `all shards` in a shard build, use:
9879
</CodeBlock>
9980
</div>
10081

101-
102-
10382
:::note
10483
- Authenticate the API using your LambdaTest username and access key, and replace `build_id`, `job_id` and `shard_id` for which you want to fetch report.
10584
- It is recommended to run the sharding test(via HyperExecute CLI) in the verbose mode i.e. with the **--verbose** flag. This allows the shard ID(task ID) and build ID(Job ID) to be displayed in the logs and then they can be used to fetch the above reports.

0 commit comments

Comments
 (0)