You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## New Regions Added for HyperExecute Performance Testing
46
+
We are excited to announce the addition of four new regions for performance testing in HyperExecute. These regions enable better coverage, reduced latency, and enhanced testing capabilities for global users.
47
+
48
+
The new regions are:
49
+
-**Central India** - Pune, Maharashtra
50
+
-**Malaysia** - Southeast Asia (Singapore)
51
+
-**Argentina** - South America (Brazil South)
52
+
-**Mexico** - Mexico Central
53
+
54
+
> 📕 Visit our [Performance Testing Documentation](https://www.lambdatest.com/support/docs/hyperexecute-run-jmeter-tests/) for step-by-step instructions on configuring your tests and making the most of HyperExecute's enhanced regional coverage.
55
+
56
+
## Download Reports for XCUI Framework
57
+
Now, you can download the [JUnit XML report](https://www.lambdatest.com/support/docs/junit-xml-report/) for your test runs on the XCUI framework.
58
+
59
+
To generate reports for your XCUI tests, add the `reports: true` flag in your [HyperExecute YAML](https://www.lambdatest.com/support/docs/hyperexecute-yaml-parameters/) file and pass the `--download-report` flag with the CLI command.
60
+
61
+
> 📕 Refer to our detailed documentation to [Generate XCUI Reports](/support/docs/hyperexecute-xcui-testing/#step-5-generate-reports-and-artifacts)
Copy file name to clipboardExpand all lines: docs/hyperexecute-xcui-testing.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -259,18 +259,20 @@ If you are using the `deviceSelectionStrategy: any`, then in that case all the m
259
259
260
260
:::
261
261
262
-
## Step 5: Generate Artifacts
263
-
To generate artifacts for your XCUI tests, add the `artifacts: true` flag in your YAML file:
262
+
## Step 5: Generate Reports and Artifacts
263
+
To generate artifacts for your XCUI tests, add the `artifacts: true` and `report: true` flag in your YAML file:
264
264
265
265
```yaml
266
+
report: true
267
+
266
268
framework:
267
269
name: "ios/xcui"
268
270
args:
269
271
artifacts: true
270
272
...//
271
273
```
272
274
273
-
To download these artifacts in your local machine, you can pass the `--download-artifacts` flag with the CLI command to execute the tests as shown in the next step.
275
+
To download these artifacts in your local machine, you can pass the `--download-artifacts` and `--download-report` flag with the CLI command to execute the tests as shown in the next step.
274
276
275
277
## Step 6: Execute your Test Suite
276
278
@@ -279,14 +281,14 @@ To download these artifacts in your local machine, you can pass the `--download-
279
281
Run the below command in your terminal at the root folder of the project:
The timeout value specified in the Playwright configuration is not being honored during mobile browser automation tests on real devices, defaulting to 30 seconds, whereas it works correctly on desktop browsers. To resolve the issue, add the following line to the `lambdatest-setup.js` file:
160
+
161
+
```javascript
162
+
context.setDefaultTimeout(120000); // Set your desired timeout value.
0 commit comments