UNPKG

appium-android-driver

Version:

Android UiAutomator and Chrome support for Appium

29 lines 897 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.launchApp = launchApp; exports.closeApp = closeApp; exports.reset = reset; const driver_1 = require("appium/driver"); const ISSUE_URL = 'https://github.com/appium/appium/issues/15807'; /** * @this {AndroidDriver} */ async function launchApp() { throw new driver_1.errors.UnsupportedOperationError(`This API is not supported anymore. See ${ISSUE_URL}`); } /** * @this {AndroidDriver} */ async function closeApp() { throw new driver_1.errors.UnsupportedOperationError(`This API is not supported anymore. See ${ISSUE_URL}`); } /** * @this {AndroidDriver} */ async function reset() { throw new driver_1.errors.UnsupportedOperationError(`This API is not supported anymore. See ${ISSUE_URL}`); } /** * @typedef {import('../driver').AndroidDriver} AndroidDriver */ //# sourceMappingURL=legacy.js.map