From d1f1248eff7f776ac0e006f7a3ca18431c8d40f6 Mon Sep 17 00:00:00 2001 From: Saksham Arora Date: Mon, 8 Dec 2025 16:35:41 +0530 Subject: [PATCH] Updated documentation --- docs/getting-started-with-xcuitest.md | 9 ++++++- docs/regular-expression-xcui.md | 3 +++ docs/sharding-xcui.md | 3 ++- docs/speedup-xcui.md | 9 ++++--- docs/xcresult.md | 4 ++-- docs/xctestplan.md | 3 +++ docs/xcui-supported-capibilities.md | 34 ++++++++++++++------------- docs/xcui-xml-report.md | 3 +++ 8 files changed, 45 insertions(+), 23 deletions(-) diff --git a/docs/getting-started-with-xcuitest.md b/docs/getting-started-with-xcuitest.md index e1ce900e0..1d86834f2 100644 --- a/docs/getting-started-with-xcuitest.md +++ b/docs/getting-started-with-xcuitest.md @@ -18,6 +18,8 @@ slug: getting-started-with-xcuitest/ import CodeBlock from '@theme/CodeBlock'; import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys"; +import RealDeviceTag from '../src/component/realDevice'; +import VirtualDeviceTag from '../src/component/virtualDevice'; - + 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 10000+ real devices and OS combinations. ## Prerequisites @@ -227,6 +229,11 @@ curl --location --request POST 'https://mobile-api.lambdatest.com/framework/v1/x }' ``` +:::info +- For Virtual Devices, both the App file and Test-suite should be in the `Zip format`. +- We need to pass the following capability `isvirtualdevice:true` as well when we are running test for Virtual Devices. +::: +