From c048c8c466a4bf9c804dd7da512fd4457e117f6e Mon Sep 17 00:00:00 2001 From: Alex Plischke Date: Wed, 14 Aug 2024 09:07:25 -0700 Subject: [PATCH] docs: xcuitest ARM support (#2799) --- .../espresso-xcuitest/xcuitest.md | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/mobile-apps/automated-testing/espresso-xcuitest/xcuitest.md b/docs/mobile-apps/automated-testing/espresso-xcuitest/xcuitest.md index e2837e82af..4959ae3ae2 100644 --- a/docs/mobile-apps/automated-testing/espresso-xcuitest/xcuitest.md +++ b/docs/mobile-apps/automated-testing/espresso-xcuitest/xcuitest.md @@ -859,7 +859,7 @@ suites: ### `simulators` -

| OPTIONAL | OBJECT |

+

| OPTIONAL | ARRAY |

The parent property that defines details for running this suite on virtual devices using a Simulator. Check our [Platform Configurator](https://saucelabs.com/products/platform-configurator#/) to see which Simulator configurations are available. @@ -875,6 +875,7 @@ suites: simulators: - name: "iPhone 13 Simulator" orientation: portrait + armRequired: false platformVersions: - "15.5" - "16.2" @@ -914,6 +915,23 @@ suites: --- +#### `armRequired` + +

| OPTIONAL | BOOLEAN |

+ +If set to true, the simulator will run on an ARM-based Mac. If set to false, the +simulator will run on an Intel-based Mac. + +```yaml +suites: + - name: My Saucy Test + simulators: + - name: "iPhone 15 Pro Simulator" + armRequired: true +``` + +--- + #### `platformVersions`

| OPTIONAL | ARRAY |