diff --git a/docs/hyperexecute-release-notes-3-0-0.md b/docs/hyperexecute-release-notes-3-0-0.md new file mode 100644 index 000000000..653f77a75 --- /dev/null +++ b/docs/hyperexecute-release-notes-3-0-0.md @@ -0,0 +1,58 @@ +--- +id: hyperexecute-release-notes-3-0-0 +title: Version 3.0.0 +hide_title: false +sidebar_label: Version 3.0.0 +description: Version 3.0.0 +keywords: + - LambdaTest Hyperexecute + - LambdaTest Hyperexecute help + - LambdaTest Hyperexecute documentation + - FAQs +url: https://www.lambdatest.com/support/docs/hyperexecute-release-notes-3-0-0/ +site_name: LambdaTest +slug: hyperexecute-release-notes-3-0-0/ +--- + +import NewReleaseTag from '../src/component/newRelease.js'; +import EnhancementTag from '../src/component/enhancementTag'; +import BugFixTag from '../src/component/bugFixTag'; +import CodeBlock from '@theme/CodeBlock'; +import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys"; + + +## Language Support for Android Real Device Maestro Framework + +We have introduced language support for Maestro tests on Android devices in HyperExecute. Now, you can configure the language parameter directly in your HyperExecute YAML under the [framework](https://www.lambdatest.com/support/docs/hyperexecute-yaml-version0.2/#framework) flag. + +This enhancement is particularly useful when your testing applications in non-English environments. For example, you can now run tests in Spanish by setting: + +```yaml title="hyperexecute.yaml" +framework: + name: raw + args: + language: es + locale: ES +``` \ No newline at end of file diff --git a/docs/hyperexecute-release-notes.md b/docs/hyperexecute-release-notes.md index 94a4c7c1b..f6c1b50b4 100644 --- a/docs/hyperexecute-release-notes.md +++ b/docs/hyperexecute-release-notes.md @@ -65,6 +65,7 @@ HyperExecute is an AI Native Test Orchestration Cloud Platform, enabling test au #### August, 2025 | Release Number | Release Date | |----------------|--------------| +| [Version 3.0.0](/support/docs/hyperexecute-release-notes-3-0-0) | August 18, 2025| | [Version 2.9.9](/support/docs/hyperexecute-release-notes-2-9-9) | August 11, 2025| | [Version 2.9.8](/support/docs/hyperexecute-release-notes-2-9-8) | August 04, 2025| diff --git a/docs/hyperexecute-yaml-version0.2.md b/docs/hyperexecute-yaml-version0.2.md index 503b41651..2ab64cd5e 100644 --- a/docs/hyperexecute-yaml-version0.2.md +++ b/docs/hyperexecute-yaml-version0.2.md @@ -65,6 +65,8 @@ The ```framework``` field in Hyperexecute YAML Version 0.2 allows you to configu | [defaultReports](#defaultReports) | Boolean | No | Specifies whether to create default reports for the specified framework.| | [region](#region) | String | No | Specifies in which region you want to spin your appium tests.| | [artifacts](#artifacts) | Boolean | No | Specifies whether to generate artifacts or not | +| [language](#language) | String | No | Specifies the device’s system language for the test session. This determines the language in which your app’s UI and strings will be displayed. | +| [locale](#locale) | String | No | Defines the regional format settings such as date, time, currency, and number conventions. | ### `name` Specifies the testing framework used in your repository. @@ -180,6 +182,28 @@ framework: > 📕 Learn [how to perform group-based test discovery in TestNG](/support/docs/hyperexecute-how-to-perform-group-based-test-discovery-in-testng) + +### `language` + +Specifies the device’s system language for the test session. This determines the language in which your app’s UI and strings will be displayed. + +```yaml +framework: + args: + language: es +``` + +### `locale` + +Defines the regional format settings such as date, time, currency, and number conventions. + +```yaml +framework: + args: + locale: ES +``` + + ## Sample Yaml Version 0.2 ```yaml @@ -204,7 +228,9 @@ framework: workingDirectory: src/main defaultReports: false args: - region: us + region: ap + language: es + locale: es retryOnFailure: true maxRetries: 1 @@ -217,24 +243,4 @@ uploadArtefacts: - name: ExecutionSnapshots path: - target/surefire-reports/html/** -``` - - \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/list-of-supported-locales.md b/docs/list-of-supported-locales.md index 580b5b04a..c10b815b9 100644 --- a/docs/list-of-supported-locales.md +++ b/docs/list-of-supported-locales.md @@ -247,33 +247,4 @@ Locale to be passed in the capability - locale: 'fr_FR' where fr is language cod | Mexico | es-MX | | South Africa | en-ZA | -> -That's all! In case you come across any doubts or have any questions for us, feel free to drop them at our  window.openLTChatWidget()}>**24x7 Chat Support** or you could also mail us directly at **[support@lambdatest.com](mailto:support@lambdatest.com)**. - - - - - - - - - - +> That's all! In case you come across any doubts or have any questions for us, feel free to drop them at our  window.openLTChatWidget()}>**24x7 Chat Support** or you could also mail us directly at **[support@lambdatest.com](mailto:support@lambdatest.com)**. \ No newline at end of file diff --git a/sidebars.js b/sidebars.js index 3b2918c66..ddb962fad 100644 --- a/sidebars.js +++ b/sidebars.js @@ -918,6 +918,7 @@ module.exports = { collapsed: true, label: "August, 2025", items: [ + "hyperexecute-release-notes-3-0-0", "hyperexecute-release-notes-2-9-9", "hyperexecute-release-notes-2-9-8", ],