UNPKG

appium-xcuitest-driver

Version:

Appium driver for iOS using XCUITest for backend

19 lines 969 B
export declare const UICATALOG_BUNDLE_ID = "com.example.apple-samplecode.UICatalog"; export declare const TESTAPP_BUNDLE_ID = "org.reactjs.native.example.VodQAReactNative"; /** * Downloads and extracts the UIKitCatalog app from GitHub if it doesn't already exist locally. * This function handles concurrent requests by reusing the same download promise. * * @returns {Promise<string>} The path to the cached app directory * @throws {Error} If the download or extraction fails */ export declare function getUIKitCatalogPath(): Promise<string>; /** * Downloads and extracts the VodQAReactNative (TestApp) app from GitHub if it doesn't already exist locally. * This function handles concurrent requests by reusing the same download promise. * * @returns {Promise<string>} The path to the cached app directory * @throws {Error} If the download or extraction fails */ export declare function getTestAppPath(): Promise<string>; //# sourceMappingURL=setup.d.ts.map