appium-espresso-driver
Version:
Espresso integration for Appium
10 lines • 551 B
TypeScript
import type { EspressoDriver } from '../driver.js';
import type { StringRecord } from '@appium/types';
/**
* Performs a sequence of W3C actions (e.g., pointer, key, wheel actions).
* Automatically converts pointer actions to touch type for mobile compatibility.
* @param actions - Array of action objects following the W3C Actions protocol
* @returns Promise that resolves when all actions are performed
*/
export declare function performActions(this: EspressoDriver, actions: StringRecord[]): Promise<void>;
//# sourceMappingURL=actions.d.ts.map