appium-xcuitest-driver
Version:
Appium driver for iOS using XCUITest for backend
17 lines • 689 B
TypeScript
import type { Simulator } from 'appium-ios-simulator';
import type { XCUITestDriver } from '../driver';
/**
* Boots and configures the selected Simulator for the current session.
*/
export declare function initSimulator(this: XCUITestDriver): Promise<void>;
/**
* Starts the selected Simulator with the configured startup options.
*/
export declare function startSim(this: XCUITestDriver): Promise<void>;
/**
* Creates a new Simulator matching the current session capabilities.
*
* @deprecated This command is deprecated and will be removed in a future version.
*/
export declare function createSim(this: XCUITestDriver): Promise<Simulator>;
//# sourceMappingURL=simulator.d.ts.map