Skip to content

Commit

Permalink
docs: xcuitest ARM support
Browse files Browse the repository at this point in the history
  • Loading branch information
alexplischke committed Jun 11, 2024
1 parent 75533d3 commit 703b95d
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion docs/mobile-apps/automated-testing/espresso-xcuitest/xcuitest.md
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ suites:

### `simulators`

<p><small>| OPTIONAL | OBJECT |</small></p>
<p><small>| OPTIONAL | ARRAY |</small></p>

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.

Expand All @@ -875,6 +875,7 @@ suites:
simulators:
- name: "iPhone 13 Simulator"
orientation: portrait
armRequired: false
platformVersions:
- "15.5"
- "16.2"
Expand Down Expand Up @@ -914,6 +915,23 @@ suites:

---

#### `armRequired`

<p><small>| OPTIONAL | BOOLEAN |</small></p>

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`

<p><small>| OPTIONAL | ARRAY |</small></p>
Expand Down

0 comments on commit 703b95d

Please sign in to comment.