appium-xcuitest-driver
Version:
Appium driver for iOS using XCUITest for backend
14 lines • 571 B
TypeScript
import type { XCUITestDriver } from '../driver';
import type { DeviceInfo, LockdownInfo } from './types';
/**
* Returns the miscellaneous information about the device under test.
*
* Since XCUITest driver v4.2.0, this includes device information via lockdown on real devices.
* Lockdown retrieval uses {@linkcode LockdownClient}.
*
* @returns The response of `/wda/device/info'`
*/
export declare function mobileGetDeviceInfo(this: XCUITestDriver): Promise<DeviceInfo | (DeviceInfo & {
lockdownInfo: LockdownInfo;
})>;
//# sourceMappingURL=device-info.d.ts.map