Skip to content

Commit 893d1a4

Browse files
authored
Merge pull request #1487 from amanchopra1905/stage
release update 2.7.6
2 parents b1eddad + c5f570a commit 893d1a4

File tree

3 files changed

+66
-0
lines changed

3 files changed

+66
-0
lines changed
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
---
2+
id: hyperexecute-release-notes-2-7-6
3+
title: Version 2.7.6
4+
hide_title: false
5+
sidebar_label: Version 2.7.6
6+
description: Version 2.7.6
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-2-7-6/
13+
site_name: LambdaTest
14+
slug: hyperexecute-release-notes-2-7-6/
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+
21+
<script type="application/ld+json"
22+
dangerouslySetInnerHTML={{ __html: JSON.stringify({
23+
"@context": "https://schema.org",
24+
"@type": "BreadcrumbList",
25+
"itemListElement": [{
26+
"@type": "ListItem",
27+
"position": 1,
28+
"name": "Home",
29+
"item": "https://www.lambdatest.com"
30+
},{
31+
"@type": "ListItem",
32+
"position": 2,
33+
"name": "Support",
34+
"item": "https://www.lambdatest.com/support/docs/"
35+
},{
36+
"@type": "ListItem",
37+
"position": 3,
38+
"name": "Version",
39+
"item": "https://www.lambdatest.com/support/docs/hyperexecute-release-notes-2-7-6/"
40+
}]
41+
})
42+
}}
43+
></script>
44+
## Parameterising `appium` flag
45+
To support advanced mobile test scenarios, particularly for iOS simulation using desktop browsers, we’ve added support for parameterising the `appium` flag. You can now configure your test matrix to include macOS + Appium combinations for mobile browser testing. This supports more flexible testing strategies for iOS use cases using desktop browsers on mac environments.
46+
47+
48+
```yaml
49+
version: 0.1
50+
51+
runson: ${matrix.os}
52+
53+
matrix:
54+
os: [mac, linux]
55+
appium: [true,false]
56+
57+
exclusionMatrix:
58+
- os: ["mac"]
59+
appium: [true]
60+
- os: ["linux"]
61+
appium: [false]
62+
63+
appium: ${matrix.appium}
64+
```

docs/hyperexecute-release-notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ HyperExecute is an AI Native Test Orchestration Cloud Platform, enabling test au
5454
| Release Number | Release Date |
5555
|----------------|--------------|
5656
| [Version 2.7.8](/support/docs/hyperexecute-release-notes-2-7-8) | March 24, 2025|
57+
| [Version 2.7.6](/support/docs/hyperexecute-release-notes-2-7-6) | March 24, 2025|
5758

5859
#### February, 2025
5960
| Release Number | Release Date |

sidebars.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -857,6 +857,7 @@ module.exports = {
857857
label: "March, 2025",
858858
items: [
859859
'hyperexecute-release-notes-2-7-8',
860+
'hyperexecute-release-notes-2-7-6',
860861
]
861862
},
862863
{

0 commit comments

Comments
 (0)