id | title | sidebar_label | description | keywords | url | site_name | slug | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
getting-started-with-xcui-testing |
XCUI Testing on LambdaTest |
XCUI Testing |
Master XCUITest automation with LambdaTest! Learn to run scripts, utilize capabilities, and execute tests on real iOS devices effortlessly. Get started now! |
|
LambdaTest |
getting-started-with-xcuitest/ |
import CodeBlock from '@theme/CodeBlock'; import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys";
<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify({ "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.lambdatest.com" },{ "@type": "ListItem", "position": 2, "name": "Support", "item": "https://www.lambdatest.com/support/docs/" },{ "@type": "ListItem", "position": 3, "name": "XCUI Testing on LambdaTest", "item": "https://www.lambdatest.com/support/docs/getting-started-with-xcuitest/" }] }) }} ></script>Developed by Apple, XCUITest is a framework for user-interface (UI) testing for iOS applications. It is built on top of XCTest, an integrated test framework in Apple's Xcode IDE. LambdaTest lets you perform automated app testing of your iOS apps using XCUITest across 3000+ real devices and OS combinations.
By the end of this topic, you will be able to:
- Run a sample automation script of an XCUI Test.
- Learn more about capabilities supported for XCUI Testing.
- You will need a LambdaTest username and access key. To obtain your access credentials, purchase a plan or access the automation dashboard.
- Access to an iOS app (.ipa) and an XCUI Test app (.ipa file).
:::tip
If you do not have any iOS app (.ipa) and an XCUI Test app (.ipa) file, you can run your sample tests on LambdaTest by using our sample 🔗 iOS app and a sample 🔗 XCUI Test.
:::
Upload your iOS application (.ipa file) to the LambdaTest servers using our REST API. You need to provide your Username and AccessKey in the format Username:AccessKey
in the cURL command for authentication. Make sure to add the path of the appFile in the cURL request.
Here is an example cURL request to upload your app using our REST API:
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
Using App File:
:::note
Response of above cURL will be a JSON object containing the App URL
of the format - lt://APP123456789123456789 and will be used in the last step.
:::
Upload your test suite (.ipa file) to the LambdaTest servers using our REST API. You need to provide your Username and AccessKey in the format Username:AccessKey
in the cURL command for authentication. Make sure to add the path of the appFile in the cURL request. Here is an example cURL request to upload your app using our REST API:
Using App File:
:::note
Response of above cURL will be a JSON object containing the App URL
of the format - lt://APP123456789123456789 and will be used in the next step.
:::
:::info You will need base64 encoded authentication in order to execute your XCUI automation test suite. You need to enter your username:accesskey here in order and click on encode to generate the base64 authentication. Take note of the base64 encoded authentication which needs to be added in the next step. :::
Once you have uploaded your app and test suite, you need to you can execute your test by running the following command:
:::info Make sure to enter your basic authentication, app url (generated in the first step) and testSuite url (generated in the second step) in the below command. :::
curl --location --request POST 'https://mobile-api.lambdatest.com/framework/v1/xcui/build' \
--header 'Authorization: Basic <Enter_Basic_Auth>' \
--header 'Content-Type: application/json' \
--data-raw '{
"app" : "lt://APP_ID",
"testSuite": "lt://TestSuite_ID",
"device" : ["iPhone 11-14"],
"video" : true,
"queueTimeout": 10800,
"idleTimeout": 150,
"devicelog": true,
"network": false,
"build" : "Proverbial-XCUITest"
}'
Once you have run your tests, you can view the test execution along with logs. You will be able to see the test cases passing or failing. You can view the same at LambdaTest Automation.
The following capabilities are supported:
-
app - Enter the app id generated while uploading the app. Example:
lt://APP123456789123456789
-
testSuite - Enter the test suite id generated while uploading the test suite. Example:
lt://APP123456789123456789
-
device - Enter the name and os version of the device in "DeviceName-OSVersion" format. Example:
iPhone 11-14
oriPhone 13 Pro Max-14
-
video - Generate video for all the tests that have run. Example:
true
-
queueTimeout - Enter the time in seconds after which you want your build to timeout from queue. Example:
300
-
idleTimeout - Enter the time in seconds for maximum running time on a test in the build. Example:
120
-
deviceLog - Boolean value to generate device logs. Example:
true
-
network - Boolean value to generate network logs. Example:
false
-
build - Set the name of the Espresso test build. Example:
My XCUITEST Build
-
geoLocation - Set the geolocation country code if you want to enable the same in your test. Example -
FR
-
tunnel, tunnelName - Set tunnel as
true
and provide the tunnelName such asNewTunnel
as needed if you are running a tunnel.
:::caution Important Only one of GeoLocation or Tunnel must be used in single execute command. :::
You can run tests in parallel on multiple devices by passing the device name in comma separated format in the execute the command as shown below:
curl --location --request POST 'https://mobile-api.lambdatest.com/framework/v1/xcui/build' \
--header 'Authorization: Basic <Enter_Basic_Auth>' \
--header 'Content-Type: application/json' \
--data-raw '{
"app" : "lt://APP_ID",
"testSuite": "lt://TestSuite_ID",
"device" : ["iPhone 11-14","iPhone 12 Pro-15","iPhone X-13"],
"queueTimeout": 10800,
"IdleTimeout": 150,
"deviceLog": true,
"build" : "Proverbial-XCUITest"
}'