Skip to content

Commit dd4f21e

Browse files
MITM Proxy doc
1 parent d7c798f commit dd4f21e

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

docs/hyperexecute-yaml-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ The **HyperExecute YAML** file serves as the foundational component for test exe
165165
| [project](/support/docs/deep-dive-into-hyperexecute-yaml/#project) | String | Segregate data at a project/repo level |
166166
| [slackChannel](/support/docs/deep-dive-into-hyperexecute-yaml/#slackchannel) | String | Allows you to receive notifications of your Job updates directly in your preferred Slack channel. |
167167
| [afterEachScenario](/support/docs/deep-dive-into-hyperexecute-yaml/#aftereachscenario) | List of Strings | Allows you to trigger your define tasks after each test scenario. |
168-
| [syncStart](/support/docs/deep-dive-into-hyperexecute-yaml/#execution) | Map | Ensures all VMs are ready before starting parallel tasks. |
168+
| [syncStart](/support/docs/deep-dive-into-hyperexecute-yaml/#syncstart) | Map | Ensures all VMs are ready before starting parallel tasks. |
169169

170170
<nav aria-label="breadcrumbs">
171171
<ul className="breadcrumbs">

docs/hyperexecute-yaml-version0.2.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ The ```framework``` field in Hyperexecute YAML Version 0.2 allows you to configu
6767
| [artifacts](#artifacts) | Boolean | No | Specifies whether to generate artifacts or not |
6868
| [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. |
6969
| [locale](#locale) | String | No | Defines the regional format settings such as date, time, currency, and number conventions. |
70+
| [mitmProxy](#mitmProxy) | Boolean | No | Capture network logs directly from emulator sessions using MITM. |
7071

7172
### `name`
7273
Specifies the testing framework used in your repository.
@@ -204,6 +205,17 @@ framework:
204205
```
205206

206207

208+
### `mitmProxy`
209+
210+
You can now capture network logs directly from emulator sessions using MITM. This enhancement enables deeper debugging of API calls, request/response payloads, and overall network traffic during test execution.
211+
212+
```yaml
213+
framework:
214+
args:
215+
mitmProxy: true
216+
```
217+
218+
207219
## Sample Yaml Version 0.2
208220

209221
```yaml
@@ -231,6 +243,7 @@ framework:
231243
region: ap
232244
language: es
233245
locale: es
246+
mitmProxy: true
234247
235248
retryOnFailure: true
236249
maxRetries: 1

0 commit comments

Comments
 (0)