Configuring Your XCUITest Tests for Real Devices and Simulators
saucectl
relies on a YAML specification file to determine exactly which tests to run and how to run them. To customize saucectl
to run your XCUITest tests, simply modify the properties of the YAML file accordingly. This page defines each of the configuration properties specific to running XCUITest tests.
Setting an Alternative Configuration File
By default, saucectl
looks for the config.yml
file in the .sauce
folder of your project root, but you can actually specify a different file, or if you are using multiple frameworks or need to configure different sets of tests to run separately, you may choose to have multiple configuration files that you can direct saucectl
to reference as necessary.
Use the following configuration at runtime to direct saucectl
to use any configuration file you choose:
saucectl run -c ./path/to/{config-file}.yml
While you can use multiple files of different names or locations to specify your configurations, each file must be a *.yml
and follow the saucectl
syntax. Our IDE Integrations (e.g., Visual Studio Code) can help you out by validating the YAML files and provide handy suggestions, so make sure to check them out!
Example Configuration
loading...
Each of the properties supported for running XCUITest tests through saucectl
is defined below.
apiVersion
| REQUIRED | STRING |
Identifies the version of the underlying configuration schema. At this time, v1alpha
is the only supported value.
apiVersion: v1alpha
kind
| REQUIRED | STRING/ENUM |
Specifies which framework is associated with the automation tests configured in this specification.
kind: xcuitest
showConsoleLog
| OPTIONAL | BOOLEAN |
Controls whether the contents of console.log
are always shown in the local output of saucectl. By default (false), console.log
is only shown for failed suites.
showConsoleLog: true
defaults
| OPTIONAL | OBJECT |
Specifies any default settings for the project.
defaults:
timeout: 15m
timeout
| OPTIONAL | DURATION |
Instructs how long (in ms
, s
, m
, or h
) saucectl
should wait for each suite to complete. You can override this setting for individual suites using the timeout
setting within the suites
object. If not set, the default value is 0
(unlimited).
When setting the timeout values for your suites, consider that native framework tests on real devices enforce a maximum test duration limit of 90 minutes.
defaults:
timeout: 15m
sauce
| OPTIONAL | OBJECT |
The parent property containing all settings related to how tests are run and identified in the Sauce Labs platform.
sauce:
region: eu-central-1
metadata:
tags:
- e2e
- release team
- other tag
build: Release $CI_COMMIT_SHORT_SHA
concurrency: 5
region
| OPTIONAL | STRING/ENUM |
Specifies through which Sauce Labs data center tests will run. Valid values are: us-west-1
or eu-central-1
.
If you do not specify a region in your config file, you must set it when running your command with the --region
flag.
sauce:
region: eu-central-1
metadata
| OPTIONAL | OBJECT | VIRTUAL ONLY |
The set of properties that allows you to provide additional information about your project that helps distinguish it in the various environments in which it is used and reviewed, and also helps you apply filters to easily isolate tests based on metrics that are meaningful to you.
At this time, the metadata
property is not supported for XCUITest because XCUITest is only supported for real device testing.
sauce:
metadata:
build: RC 10.4.i
tags:
- e2e
- iPad
- beta
- featurex
concurrency
| OPTIONAL | INTEGER |
Sets the maximum number of suites to execute at the same time. If the test defines more suites than the max, excess suites are queued and run in order as each suite completes.
Set this value to equal or less than your Sauce concurrency allowance, as setting a higher value may result in jobs dropped by the server.
sauce:
concurrency: 5
Alternatively, you can override the file setting at runtime by setting the concurrency flag as an inline parameter of the saucectl run
command:
saucectl run --ccy 5
retries
| OPTIONAL | INTEGER |
Sets the number of times to retry a failed suite. For more settings, you can refer to passThreshold.
sauce:
retries: 1
Alternatively, you can override the file setting at runtime by setting the retries flag as an inline parameter of the saucectl run
command:
saucectl run --retries 1
tunnel
| OPTIONAL | OBJECT |
saucectl
supports using Sauce Connect to establish a secure connection with Sauce Labs. To do so, launch a tunnel; then provide the name and owner (if applicable) in this property.
sauce:
tunnel:
name: your_tunnel_name
owner: tunnel_owner_username
name
| OPTIONAL | STRING |
Identifies an active Sauce Connect tunnel to use for secure connectivity to the Sauce Labs cloud.
This property replaces the former id
property, which is deprecated.
sauce:
tunnel:
name: your_tunnel_name
owner
| OPTIONAL | STRING |
Identifies the Sauce Labs user who created the specified tunnel, which is required if the user running the tests did not create the tunnel.
This property replaces the former parent
property, which is deprecated.
sauce:
tunnel:
name: your_tunnel_name
owner: tunnel_owner_username
launchOrder
| OPTIONAL | STRING |
Specifies the execution order for your test suites. When set to fail rate
, test suites with the highest failure rate will execute first. If unspecified, test suites will execute in the order in which they are written in the configuration file.
sauce:
launchOrder: fail rate
env
| OPTIONAL | OBJECT | Virtual Devices Only |
A property containing one or more environment variables that are global for all tests suites in this configuration. Values set in this global property will overwrite values set for the same environment variables set at the suite level.
env:
FOO: bar
reporters
| OPTIONAL | OBJECT |
The parent property containing all reporting capabilities provided by saucectl
.
reporters:
junit:
enabled: true
filename: saucectl-report.xml
webhookURL: https://my-webhook-url
spotlight
| OPTIONAL | OBJECT |
The spotlight reporter highlights failed or otherwise interesting jobs. It may include an excerpt of failed tests or other information that may be useful for troubleshooting.
reporters:
spotlight:
enabled: true
junit
| OPTIONAL | OBJECT |
The JUnit reporter gathers JUnit reports from all jobs and combines them into a single report.
reporters:
junit:
enabled: true
json
| OPTIONAL | OBJECT |
The JSON reporter gathers test results from all jobs and combines them into a single report.
reporters:
json:
enabled: true
enabled
| OPTIONAL | BOOLEAN |
Toggles the reporter on/off.
reporters:
junit: # or json
enabled: true
webhookURL
| OPTIONAL | STRING |
Specifies the webhook URL. When saucectl test is finished, it'll send an HTTP POST with a JSON payload to the configured webhook URL.
reporters:
junit: # or json
webhookURL: https://my-webhook-url
filename
| OPTIONAL | STRING |
Specifies the report filename. Defaults to "saucectl-report.json".
reporters:
junit: # or json
filename: my-saucectl-report.json
artifacts
| OPTIONAL | OBJECT |
The parent property specifying how to manage test output, such as logs, videos, and screenshots.
artifacts:
cleanup: true
download:
when: always
match:
- junit.xml
directory: ./artifacts/
cleanup
| OPTIONAL | BOOLEAN |
When set to true
, all contents of the specified download directory are cleared before any new artifacts from the current test are downloaded.
artifacts:
cleanup: true
download
| OPTIONAL | OBJECT |
Specifies the settings related to downloading artifacts from tests run by saucectl
.
artifacts:
download:
when: always
match:
- junit.xml
directory: ./artifacts/
when
| OPTIONAL | STRING |
Specifies when and under what circumstances to download artifacts. Valid values are:
always
: Always download artifacts.never
: Never download artifacts.pass
: Download artifacts for passing suites only.fail
: Download artifacts for failed suites only.
artifacts:
download:
when: always
match
| OPTIONAL | STRING/ARRAY |
Specifies which artifacts to download based on whether they match the name or file type pattern provided. Supports the wildcard character *
(use quotes for best parsing results with wildcard).
artifacts:
download:
match:
- junit.xml
- "*.log"
directory
| OPTIONAL | STRING |
Specifies the path to the folder location in which to download artifacts. A separate subdirectory is generated in this location for each suite for which artifacts are downloaded. The name of the subdirectory will match the suite name. If a directory with the same name already exists, the new one will be suffixed by a serial number.
artifacts:
download:
directory: ./artifacts/
xcuitest
| REQUIRED | OBJECT |
The parent property containing the details specific to the XCUITest project.
xcuitest:
app: ./apps/SauceLabs-Demo-App.ipa # This is an example app for real devices.
appDescription: My demo app
testApp: ./apps/SauceLabs-Demo-App-Runner.app
testAppDescription: My test app
otherApps:
- ./apps/pre-installed-app1.ipa # This is an example app for real devices.
- ./apps/pre-installed-app2.ipa # This is an example app for real devices.
saucectl
supports running XCUITests on Real Devices and Simulators which can be configured by using:
devices
, see Devicessimulators
, see Simulators
They can NOT be used in the same suites
configuration due to app
and testApp
architecture differences between Real Devices and Simulators (enforced by Apple). If you want to use both Real Devices and Simulators, you need to create two separate suites
configurations and provide app
and testApp
configuration for each suite.
Follow the instructions to build iOS Real Device .ipa
files or iOS Simulator .app
files.
app
| REQUIRED | STRING |
Specifies a local path, url, or storage identifier to the app under test. This property supports expanded environment variables. Supports *.ipa
, *.app
and *.zip
file types.
xcuitest:
# Local paths
## Real Devices
app: ./apps/xcuitest/SauceLabs-Demo-Real-Device-App.ipa
## Simulators
app: ./apps/xcuitest/SauceLabs-Demo-Simulator-App.app # Will automatically be zipped
app: ./apps/xcuitest/SauceLabs-Demo-Simulator-App.zip
# Remote locations
## Real Devices
app: https://example.app.download.url/SauceLabs-Demo-Real-Device-App.ipa
## Simulators
app: https://example.app.download.url/SauceLabs-Demo-Simulator-App.zip
# Using an environment variable
app: $APP
# Storage identifiers
app: storage:c78ec45e-ea3e-ac6a-b094-00364171addb
## Real Devices
app: storage:filename=SauceLabs-Demo-App.ipa
## Simulators
app: storage:filename=SauceLabs-Demo-Simulator-App.zip
appDescription
| OPTIONAL | STRING |
Specifies description for the uploaded app.
xcuitest:
appDescription: My demo app
testApp
| REQUIRED | STRING |
Either a local path, url, or storage identifier to the testing app. This property supports expanded environment variables. Supports *.ipa
, *.app
or *.zip
file types.
xcuitest:
# Local paths
## Real Devices
testApp: ./apps/xcuitest/SauceLabs-Demo-Real-Device-App-Runner.ipa
## Simulators
testApp: ./apps/xcuitest/SauceLabs-Demo-Simulator-App-Runner.app # Will automatically be zipped
testApp: ./apps/xcuitest/SauceLabs-Demo-Simulator-App-Runner.zip
# Remote locations
## Real Devices
testApp: https://example.app.download.url/SauceLabs-Demo-Real-Device-App-Runner.ipa
## Simulators
testApp: https://example.app.download.url/SauceLabs-Demo-Simulator-App-Runner.zip
# Using an environment variable
testApp: $APP
# Storage identifiers
testApp: storage:11f421f0-30e3-23c2-9026-d73a205dcd38
## Real Devices
testApp: storage:filename=SauceLabs-Demo-App-Runner.ipa
## Simulators
testApp: storage:filename=SauceLabs-Demo-Simulator-App-Runner.zip
testAppDescription
| OPTIONAL | STRING |
Specifies description for the uploaded testApp.
xcuitest:
testAppDescription: My test Runner app
otherApps
| OPTIONAL | ARRAY |
Set of up to seven (real devices) or two (virtual devices) apps to pre-install for your tests. See app
for more app details.
- Real Device and Simulator apps can NOT be combined, see
xcuitest
for more details. - Apps specified as
otherApps
inherit the configuration of the main app under test forDevice Language
,Device Orientation
, andProxy
, regardless of any differences that may be applied through the Sauce Labs UI, because the settings are specific to the device under test. For example, if the dependent app is intended to run in landscape orientation, but the main app is set to portrait, the dependent app will run in portrait for the test, which may have unintended consequences.
xcuitest:
otherApps:
- ./apps/pre-installed-app1.ipa # This is an example app for real devices.
- https://example.app.download.url/pre-installed-app1.ipa # This is an example app for real devices.
- $PRE_INSTALLED_APP2
- storage:8d250fec-5ecb-535c-5d63-aed4da026293
- storage:filename=pre-installed-app3.ipa # This is an example app for real devices.
suites
| REQUIRED | OBJECT |
The set of properties providing details about the test suites to run. May contain multiple suite definitions. See the full example config for an illustration of multiple suite definitions.
name
| REQUIRED | STRING |
The name of the test suite, which will be reflected in the results and related artifacts.
suites:
- name: My Saucy Test
app
| OPTIONAL | STRING |
Sets the test application on the suite level. See the full usage. If this property is not set, saucectl
will use the default app
from the xcuitest
level.
suites:
- name: My Saucy Test
app: ./apps/SauceLabs-Demo-App.ipa # This is an example app for real devices.
appDescription
| OPTIONAL | STRING |
Specifies description for the uploaded test app on the suite level. If app
is not set on suite level, saucectl
will use the default appDescription
from the xcuitest
level.
suites:
- name: My Saucy Test
appDescription: My Demo app
testApp
| OPTIONAL | STRING |
Sets the test runner application on the suite level. See the full usage. If this property is not set, saucectl
will use the default testApp
from the xcuitest
level.
suites:
- name: My Saucy Test
testApp: ./apps/SauceLabs-Demo-App-Runner.app
testAppDescription
| OPTIONAL | STRING |
Specifies description for the uploaded test runner applicaiton on the suite level. If testApp
is not set on suite level, saucectl
will use the default testAppDescription
from the xcuitest
level.
suites:
- name: My Saucy Test
testAppDescription: My Demo test runner app
timeout
| OPTIONAL | DURATION |
Instructs how long saucectl
should wait for the suite to complete, potentially overriding the default project timeout setting.
When the suite reaches the timeout limit, its status is set to '?' in the CLI. This does not reflect the actual status of the job in the Sauce Labs web UI or API.
Setting 0
reverts to the value set in defaults
.
suites:
- name: My Saucy Test
timeout: 15m
passThreshold
| OPTIONAL | INTEGER |
Specifies the minimum number of successful attempts for a suite to be considered as passed
. It should be used along with retries.
For example, setting retries
to 3 and passThreshold
to 2.
The max attempt would be 4 times. If the test passed twice, it'd stop and be marked as passed
. Otherwise, it'd be marked as failed
.
sauce:
retries: 3
suites:
- name: My Saucy Test
passThreshold: 2
smartRetry
| OPTIONAL | OBJECT |
Specifies the retry strategy to apply for that suite. It should be used along with retries.
sauce:
retries: 3
suites:
- name: My Saucy Test
smartRetry:
failedOnly: true
failedOnly
| OPTIONAL | BOOLEAN |
When set to true
, saucectl
collects any failed tests from the previous run and performs an automatic retry on them.
suites:
- name: My Saucy Test
smartRetry:
failedOnly: true