Skip to content

Commit c2b0ff0

Browse files
authored
Merge pull request #2021 from Ishavyas9/main
HYP release notes
2 parents 34eb5fd + a079df1 commit c2b0ff0

File tree

5 files changed

+89
-52
lines changed

5 files changed

+89
-52
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
id: hyperexecute-release-notes-3-0-0
3+
title: Version 3.0.0
4+
hide_title: false
5+
sidebar_label: Version 3.0.0
6+
description: Version 3.0.0
7+
keywords:
8+
- LambdaTest Hyperexecute
9+
- LambdaTest Hyperexecute help
10+
- LambdaTest Hyperexecute documentation
11+
- FAQs
12+
url: https://www.lambdatest.com/support/docs/hyperexecute-release-notes-3-0-0/
13+
site_name: LambdaTest
14+
slug: hyperexecute-release-notes-3-0-0/
15+
---
16+
17+
import NewReleaseTag from '../src/component/newRelease.js';
18+
import EnhancementTag from '../src/component/enhancementTag';
19+
import BugFixTag from '../src/component/bugFixTag';
20+
import CodeBlock from '@theme/CodeBlock';
21+
import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys";
22+
23+
<script type="application/ld+json"
24+
dangerouslySetInnerHTML={{ __html: JSON.stringify({
25+
"@context": "https://schema.org",
26+
"@type": "BreadcrumbList",
27+
"itemListElement": [{
28+
"@type": "ListItem",
29+
"position": 1,
30+
"name": "Home",
31+
"item": "https://www.lambdatest.com"
32+
},{
33+
"@type": "ListItem",
34+
"position": 2,
35+
"name": "Support",
36+
"item": "https://www.lambdatest.com/support/docs/"
37+
},{
38+
"@type": "ListItem",
39+
"position": 3,
40+
"name": "Version",
41+
"item": "https://www.lambdatest.com/support/docs/hyperexecute-release-notes-3-0-0/"
42+
}]
43+
})
44+
}}
45+
></script>
46+
## Language Support for Android Real Device Maestro Framework
47+
48+
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.
49+
50+
This enhancement is particularly useful when your testing applications in non-English environments. For example, you can now run tests in Spanish by setting:
51+
52+
```yaml title="hyperexecute.yaml"
53+
framework:
54+
name: raw
55+
args:
56+
language: es
57+
locale: ES
58+
```

docs/hyperexecute-release-notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ HyperExecute is an AI Native Test Orchestration Cloud Platform, enabling test au
6565
#### August, 2025
6666
| Release Number | Release Date |
6767
|----------------|--------------|
68+
| [Version 3.0.0](/support/docs/hyperexecute-release-notes-3-0-0) | August 18, 2025|
6869
| [Version 2.9.9](/support/docs/hyperexecute-release-notes-2-9-9) | August 11, 2025|
6970
| [Version 2.9.8](/support/docs/hyperexecute-release-notes-2-9-8) | August 04, 2025|
7071

docs/hyperexecute-yaml-version0.2.md

Lines changed: 28 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ The ```framework``` field in Hyperexecute YAML Version 0.2 allows you to configu
6565
| [defaultReports](#defaultReports) | Boolean | No | Specifies whether to create default reports for the specified framework.|
6666
| [region](#region) | String | No | Specifies in which region you want to spin your appium tests.|
6767
| [artifacts](#artifacts) | Boolean | No | Specifies whether to generate artifacts or not |
68+
| [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. |
69+
| [locale](#locale) | String | No | Defines the regional format settings such as date, time, currency, and number conventions. |
6870

6971
### `name`
7072
Specifies the testing framework used in your repository.
@@ -180,6 +182,28 @@ framework:
180182

181183
> 📕 Learn [how to perform group-based test discovery in TestNG](/support/docs/hyperexecute-how-to-perform-group-based-test-discovery-in-testng)
182184

185+
186+
### `language`
187+
188+
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.
189+
190+
```yaml
191+
framework:
192+
args:
193+
language: es
194+
```
195+
196+
### `locale`
197+
198+
Defines the regional format settings such as date, time, currency, and number conventions.
199+
200+
```yaml
201+
framework:
202+
args:
203+
locale: ES
204+
```
205+
206+
183207
## Sample Yaml Version 0.2
184208

185209
```yaml
@@ -204,7 +228,9 @@ framework:
204228
workingDirectory: src/main
205229
defaultReports: false
206230
args:
207-
region: us
231+
region: ap
232+
language: es
233+
locale: es
208234
209235
retryOnFailure: true
210236
maxRetries: 1
@@ -217,24 +243,4 @@ uploadArtefacts:
217243
- name: ExecutionSnapshots
218244
path:
219245
- target/surefire-reports/html/**
220-
```
221-
222-
<nav aria-label="breadcrumbs">
223-
<ul className="breadcrumbs">
224-
<li className="breadcrumbs__item">
225-
<a className="breadcrumbs__link" target="_self" href="https://www.lambdatest.com">
226-
Home
227-
</a>
228-
</li>
229-
<li className="breadcrumbs__item">
230-
<a className="breadcrumbs__link" target="_self" href="https://www.lambdatest.com/support/docs/">
231-
Support
232-
</a>
233-
</li>
234-
<li className="breadcrumbs__item breadcrumbs__item--active">
235-
<span className="breadcrumbs__link">
236-
Hyperexecute Yaml Version 0.2
237-
</span>
238-
</li>
239-
</ul>
240-
</nav>
246+
```

docs/list-of-supported-locales.md

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -247,33 +247,4 @@ Locale to be passed in the capability - locale: 'fr_FR' where fr is language cod
247247
| Mexico | es-MX |
248248
| South Africa | en-ZA |
249249

250-
>
251-
That's all! In case you come across any doubts or have any questions for us, feel free to drop them at our <span className="doc__lt" onClick={() => window.openLTChatWidget()}>**24x7 Chat Support**</span> or you could also mail us directly at **[[email protected]](mailto:[email protected])**.
252-
253-
<nav aria-label="breadcrumbs">
254-
<ul className="breadcrumbs">
255-
<li className="breadcrumbs__item">
256-
<a className="breadcrumbs__link" target="_self" href="https://www.lambdatest.com">
257-
Home
258-
</a>
259-
</li>
260-
<li className="breadcrumbs__item">
261-
<a className="breadcrumbs__link" target="_self" href="https://www.lambdatest.com/support/docs/">
262-
Support
263-
</a>
264-
</li>
265-
<li className="breadcrumbs__item breadcrumbs__item--active">
266-
<span className="breadcrumbs__link">
267-
Linear App Integration
268-
</span>
269-
</li>
270-
</ul>
271-
</nav>
272-
273-
274-
275-
276-
277-
278-
279-
250+
> That's all! In case you come across any doubts or have any questions for us, feel free to drop them at our <span className="doc__lt" onClick={() => window.openLTChatWidget()}>**24x7 Chat Support**</span> or you could also mail us directly at **[[email protected]](mailto:[email protected])**.

sidebars.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -918,6 +918,7 @@ module.exports = {
918918
collapsed: true,
919919
label: "August, 2025",
920920
items: [
921+
"hyperexecute-release-notes-3-0-0",
921922
"hyperexecute-release-notes-2-9-9",
922923
"hyperexecute-release-notes-2-9-8",
923924
],

0 commit comments

Comments
 (0)