UNPKG

appium-android-driver

Version:

Android UiAutomator and Chrome support for Appium

23 lines 832 B
import type { AndroidDriver } from '../driver'; /** * Launches the application. * * @returns Promise that resolves when the app is launched. * @throws {errors.UnsupportedOperationError} This API is not supported anymore. */ export declare function launchApp(this: AndroidDriver): Promise<void>; /** * Closes the application. * * @returns Promise that resolves when the app is closed. * @throws {errors.UnsupportedOperationError} This API is not supported anymore. */ export declare function closeApp(this: AndroidDriver): Promise<void>; /** * Resets the application state. * * @returns Promise that resolves when the app is reset. * @throws {errors.UnsupportedOperationError} This API is not supported anymore. */ export declare function reset(this: AndroidDriver): Promise<void>; //# sourceMappingURL=legacy.d.ts.map