UNPKG

485 BTypeScriptView Raw
1import type { BaseActionParams } from './base.js';
2import BaseAction from './base.js';
3export default class KeyAction extends BaseAction {
4 #private;
5 constructor(instance: WebdriverIO.Browser, params?: BaseActionParams);
6 /**
7 * Generates a key up action.
8 * @param value key value
9 */
10 up(value: string): this;
11 /**
12 * Generates a key down action.
13 * @param value key value
14 */
15 down(value: string): this;
16}
17//# sourceMappingURL=key.d.ts.map
\No newline at end of file