UNPKG

appium-android-driver

Version:

Android UiAutomator and Chrome support for Appium

16 lines 629 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.performActions = performActions; /* eslint-disable @typescript-eslint/no-unused-vars */ const driver_1 = require("appium/driver"); /** * Performs a series of actions (gestures) on the device. * * @param actions An array of action objects to perform. * @returns Promise that resolves when all actions are performed. * @throws {errors.NotImplementedError} This method is not implemented. */ async function performActions(actions) { throw new driver_1.errors.NotImplementedError('Not implemented'); } //# sourceMappingURL=gestures.js.map