UNPKG

appium-android-driver

Version:

Android UiAutomator and Chrome support for Appium

20 lines (17 loc) 622 B
/* eslint-disable @typescript-eslint/no-unused-vars */ import {errors} from 'appium/driver'; import type {StringRecord} from '@appium/types'; import type {AndroidDriver} from '../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. */ export async function performActions( this: AndroidDriver, actions: StringRecord[], ): Promise<void> { throw new errors.NotImplementedError('Not implemented'); }