appium-android-driver
Version:
Android UiAutomator and Chrome support for Appium
29 lines (23 loc) • 696 B
JavaScript
import { errors } from 'appium/driver';
const ISSUE_URL = 'https://github.com/appium/appium/issues/15807';
/**
* @this {AndroidDriver}
*/
export async function launchApp () {
throw new errors.UnsupportedOperationError(`This API is not supported anymore. See ${ISSUE_URL}`);
}
/**
* @this {AndroidDriver}
*/
export async function closeApp () {
throw new errors.UnsupportedOperationError(`This API is not supported anymore. See ${ISSUE_URL}`);
}
/**
* @this {AndroidDriver}
*/
export async function reset () {
throw new errors.UnsupportedOperationError(`This API is not supported anymore. See ${ISSUE_URL}`);
}
/**
* @typedef {import('../driver').AndroidDriver} AndroidDriver
*/