Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions docs/hyperexecute-release-notes-2-7-6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
---
id: hyperexecute-release-notes-2-7-6
title: Version 2.7.6
hide_title: false
sidebar_label: Version 2.7.6
description: Version 2.7.6
keywords:
- LambdaTest Hyperexecute
- LambdaTest Hyperexecute help
- LambdaTest Hyperexecute documentation
- FAQs
url: https://www.lambdatest.com/support/docs/hyperexecute-release-notes-2-7-6/
site_name: LambdaTest
slug: hyperexecute-release-notes-2-7-6/
---

import NewReleaseTag from '../src/component/newRelease.js';
import EnhancementTag from '../src/component/enhancementTag';
import BugFixTag from '../src/component/bugFixTag';

<script type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify({
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://www.lambdatest.com"
},{
"@type": "ListItem",
"position": 2,
"name": "Support",
"item": "https://www.lambdatest.com/support/docs/"
},{
"@type": "ListItem",
"position": 3,
"name": "Version",
"item": "https://www.lambdatest.com/support/docs/hyperexecute-release-notes-2-7-6/"
}]
})
}}
></script>
## Parameterising `appium` flag
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.


```yaml
version: 0.1

runson: ${matrix.os}

matrix:
os: [mac, linux]
appium: [true,false]

exclusionMatrix:
- os: ["mac"]
appium: [true]
- os: ["linux"]
appium: [false]

appium: ${matrix.appium}
```
1 change: 1 addition & 0 deletions docs/hyperexecute-release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ HyperExecute is an AI Native Test Orchestration Cloud Platform, enabling test au
| Release Number | Release Date |
|----------------|--------------|
| [Version 2.7.8](/support/docs/hyperexecute-release-notes-2-7-8) | March 24, 2025|
| [Version 2.7.6](/support/docs/hyperexecute-release-notes-2-7-6) | March 24, 2025|

#### February, 2025
| Release Number | Release Date |
Expand Down
1 change: 1 addition & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,7 @@ module.exports = {
label: "March, 2025",
items: [
'hyperexecute-release-notes-2-7-8',
'hyperexecute-release-notes-2-7-6',
]
},
{
Expand Down
Loading