appium-xcuitest-driver
Version:
Appium driver for iOS using XCUITest for backend
13 lines • 453 B
TypeScript
import type { XCUITestDriver } from '../driver';
import type { BatteryInfo } from './types';
/**
* Reads the battery information from the device under test.
*
* This endpoint only returns reliable result on real devices.
*
* @returns Battery information with advanced details
*/
export declare function mobileGetBatteryInfo(this: XCUITestDriver): Promise<BatteryInfo & {
advanced: Record<string, any>;
}>;
//# sourceMappingURL=battery.d.ts.map