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 |