diff --git a/docs/hyperexecute-espresso-testing.md b/docs/hyperexecute-espresso-testing.md
index 1e4fe95f3..2ac33ca8b 100644
--- a/docs/hyperexecute-espresso-testing.md
+++ b/docs/hyperexecute-espresso-testing.md
@@ -276,6 +276,7 @@ To generate artifacts for your Espresso tests, add the `artifacts: true`, and `r
```yaml
report: true
+
framework:
name: "android/espresso"
args:
diff --git a/docs/hyperexecute-release-notes-2-6-5.md b/docs/hyperexecute-release-notes-2-6-5.md
new file mode 100644
index 000000000..4bc8395d9
--- /dev/null
+++ b/docs/hyperexecute-release-notes-2-6-5.md
@@ -0,0 +1,61 @@
+---
+id: hyperexecute-release-notes-2-6-5
+title: Version 2.6.5
+hide_title: false
+sidebar_label: Version 2.6.5
+description: Version 2.6.5
+keywords:
+ - LambdaTest Hyperexecute
+ - LambdaTest Hyperexecute help
+ - LambdaTest Hyperexecute documentation
+ - FAQs
+url: https://www.lambdatest.com/support/docs/hyperexecute-release-notes-2-6-5/
+site_name: LambdaTest
+slug: hyperexecute-release-notes-2-6-5/
+---
+
+import NewReleaseTag from '../src/component/newRelease.js';
+import EnhancementTag from '../src/component/enhancementTag';
+import BugFixTag from '../src/component/bugFixTag';
+
+
+
+## New Regions Added for HyperExecute Performance Testing
+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.
+
+The new regions are:
+- **Central India** - Pune, Maharashtra
+- **Malaysia** - Southeast Asia (Singapore)
+- **Argentina** - South America (Brazil South)
+- **Mexico** - Mexico Central
+
+> 📕 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.
+
+## Download Reports for XCUI Framework
+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.
+
+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.
+
+> 📕 Refer to our detailed documentation to [Generate XCUI Reports](/support/docs/hyperexecute-xcui-testing/#step-5-generate-reports-and-artifacts)
\ No newline at end of file
diff --git a/docs/hyperexecute-release-notes.md b/docs/hyperexecute-release-notes.md
index 93ccd8136..c3b7057fb 100644
--- a/docs/hyperexecute-release-notes.md
+++ b/docs/hyperexecute-release-notes.md
@@ -46,6 +46,7 @@ HyperExecute is an AI Powered Test Orchestration Cloud Platform, enabling test a
### December, 2024
| Release Number | Release Date |
|----------------|--------------|
+| [Version 2.6.5](/support/docs/hyperexecute-release-notes-2-6-5) | December 23, 2024|
| [Version 2.6.2](/support/docs/hyperexecute-release-notes-2-6-2) | December 02, 2024|
### November, 2024
diff --git a/docs/hyperexecute-run-jmeter-tests.md b/docs/hyperexecute-run-jmeter-tests.md
index 37d0f2442..45487b4f3 100644
--- a/docs/hyperexecute-run-jmeter-tests.md
+++ b/docs/hyperexecute-run-jmeter-tests.md
@@ -66,7 +66,18 @@ After setting up a Test Plan, now you need to associate your test cases and exec
- **Total Users :** This indicates the number of users you intend to test for.
- **Duration (min) :** This specifies the desired duration for the test.
- **Ramp-up Time (min) :** This specifies the amount of time it should take to reach the peak test load.
- - **Total Load Distribution :** Configure the regions in which you want to distribute the load testing as per the % of the users.
+ - **Total Load Distribution :** Configure the **regions** in which you want to distribute the load testing as per the % of the users.
+
+:::info
+**Supported Regions :** HyperExecute supports the following regions for performance testing
+- West US 2 (Moses Lake, Washington)
+- East US (Richmond, Virginia)
+- Central India (Pune, Maharashtra)
+- Southeast Asia (Singapore)
+- Brazil South (São Paulo State, Brazil)
+- Mexico Central (Querétaro State, Mexico)
+:::
+
- Click on the **Run Test** button.
diff --git a/docs/hyperexecute-xcui-testing.md b/docs/hyperexecute-xcui-testing.md
index df97cb3c7..167f304b7 100644
--- a/docs/hyperexecute-xcui-testing.md
+++ b/docs/hyperexecute-xcui-testing.md
@@ -259,10 +259,12 @@ If you are using the `deviceSelectionStrategy: any`, then in that case all the m
:::
-## Step 5: Generate Artifacts
-To generate artifacts for your XCUI tests, add the `artifacts: true` flag in your YAML file:
+## Step 5: Generate Reports and Artifacts
+To generate artifacts for your XCUI tests, add the `artifacts: true` and `report: true` flag in your YAML file:
```yaml
+report: true
+
framework:
name: "ios/xcui"
args:
@@ -270,7 +272,7 @@ framework:
...//
```
-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.
+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.
## Step 6: Execute your Test Suite
@@ -279,14 +281,14 @@ To download these artifacts in your local machine, you can pass the `--download-
Run the below command in your terminal at the root folder of the project:
```bash
-./hyperexecute --config RELATIVE_PATH_OF_YOUR_YAML_FILE --download-artifacts
+./hyperexecute --config RELATIVE_PATH_OF_YOUR_YAML_FILE --download-artifacts --download-report
```
OR use this command if you have not exported your username and access key in the step 2.