Skip to content

Commit 2fb7998

Browse files
Merge branch 'main' into tf-eol
2 parents 6c4005d + bf70e0d commit 2fb7998

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

docs/dev/test-configuration-options.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1452,12 +1452,13 @@ capabilities.setCapability("sauce:options", sauceOptions);
14521452

14531453
<p><small>| OPTIONAL | BOOLEAN | <span className="sauceGreen">Real Devices Only</span> |</small></p>
14541454

1455-
Vitals enables memory, cpu, performance stats alongside UI interactions during the session.
1455+
Vitals enables memory, cpu, performance stats alongside UI interactions during the session. [`resigningEnabled`](#resigningenabled) needs to be enabled if this is set to `true`.
14561456

14571457
```java
14581458
MutableCapabilities capabilities = new MutableCapabilities();
14591459
//...
14601460
MutableCapabilities sauceOptions = new MutableCapabilities();
1461+
sauceOptions.setCapability("resigningEnabled", true);
14611462
sauceOptions.setCapability("vitals", true);
14621463
capabilities.setCapability("sauce:options", sauceOptions);
14631464
```
@@ -1474,6 +1475,7 @@ Enables the [camera image injection](/mobile-apps/features/camera-image-injectio
14741475
MutableCapabilities capabilities = new MutableCapabilities();
14751476
//...
14761477
MutableCapabilities sauceOptions = new MutableCapabilities();
1478+
sauceOptions.setCapability("resigningEnabled", true);
14771479
sauceOptions.setCapability("imageInjection", true);
14781480
capabilities.setCapability("sauce:options", sauceOptions);
14791481
```
@@ -1490,6 +1492,7 @@ Bypasses the restriction on taking screenshots for secure screens (i.e., secure
14901492
MutableCapabilities capabilities = new MutableCapabilities();
14911493
//...
14921494
MutableCapabilities sauceOptions = new MutableCapabilities();
1495+
sauceOptions.setCapability("resigningEnabled", true);
14931496
sauceOptions.setCapability("bypassScreenshotRestriction", true);
14941497
capabilities.setCapability("sauce:options", sauceOptions);
14951498
```
@@ -1506,6 +1509,7 @@ Enables the interception of biometric input, allowing the test to simulate Touch
15061509
MutableCapabilities capabilities = new MutableCapabilities();
15071510
//...
15081511
MutableCapabilities sauceOptions = new MutableCapabilities();
1512+
sauceOptions.setCapability("resigningEnabled", true);
15091513
sauceOptions.setCapability("biometricsInterception", true);
15101514
capabilities.setCapability("sauce:options", sauceOptions);
15111515
```
@@ -1516,12 +1520,13 @@ capabilities.setCapability("sauce:options", sauceOptions);
15161520

15171521
<p><small>| OPTIONAL | BOOLEAN | <span className="sauceGreen">Real Devices Only</span> |</small></p>
15181522

1519-
Enables capturing and inclusion of detailed stack traces in the test results, providing insights into any application crashes that occur during testing.
1523+
Enables capturing and inclusion of detailed stack traces in the test results, providing insights into any application crashes that occur during testing. [`resigningEnabled`](#resigningenabled) needs to be enabled if this is set to `true`.
15201524

15211525
```java
15221526
MutableCapabilities capabilities = new MutableCapabilities();
15231527
//...
15241528
MutableCapabilities sauceOptions = new MutableCapabilities();
1529+
sauceOptions.setCapability("resigningEnabled", true);
15251530
sauceOptions.setCapability("crashReporting", true);
15261531
capabilities.setCapability("sauce:options", sauceOptions);
15271532
```

docs/mobile-apps/features/mobile-app-diagnostics/device-vitals.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,24 @@ Device Vitals is a functionality that allows you to debug and observe an app’s
1919

2020
## Using Device Vitals for Real Devices
2121

22-
To use Device Vitals, you must ensure that the functionality is enabled for your app.
22+
To use Device Vitals, you must ensure that the functionality is enabled for your app. You need to specify this separately for your Live and Automated tests.
2323

24+
### Upload Your App
2425
1. In Sauce Labs, from the left navigation, click **App Management**.
2526
<img src={useBaseUrl('img/mobile-apps/app-management.png')} alt="App Management" width="700"/>
2627
2. Upload your mobile app.
2728
<img src={useBaseUrl('img/mobile-apps/app-logs-8.png')} alt="App Logs" width="700"/>
28-
3. After you’ve uploaded your app, locate it in the table and select **Settings** from the corresponding row.
29+
30+
### Enabling Device Vitals for a Live Test
31+
1. After you’ve uploaded your app, locate it in the table and select **Settings** from the corresponding row.
2932
<img src={useBaseUrl('img/mobile-apps/app-management-select-settings.png')} alt="Select Settings" width="700"/>
30-
4. Under **Real Device Settings** first enable **Instrumentation** and then toggle **Device Vitals** on.
33+
2. Under **Real Device Settings** first enable **Instrumentation** and then toggle **Device Vitals** on.
3134
<img src={useBaseUrl('img/mobile-apps/device-vitals-app-setting.png')} alt="Device Vitals App Setting" width="700"/>
3235

33-
Now you can start your live or automated testing session. Your Device Vitals will be captured and be part of your test results.
36+
Now you can start your live testing session. Your Device Vitals will be captured and be part of your test results.
37+
38+
### Enabling Device Vitals for an Automated Test
39+
After you’ve uploaded your app, follow the [test configuration](/dev/test-configuration-options/#resigningenabled) instructions. Once you run your automated test the Device Vitals will be captured and be part of your test results.
3440

3541
## Device Vitals Metrics Overview
3642

0 commit comments

Comments
 (0)