(text: string)
| 215 | async select(selector: string, value: string): Promise<string> { return this.command('select', [selector, value]); } |
| 216 | async hover(selector: string): Promise<string> { return this.command('hover', [selector]); } |
| 217 | async type(text: string): Promise<string> { return this.command('type', [text]); } |
| 218 | async press(key: string): Promise<string> { return this.command('press', [key]); } |
| 219 | async scroll(selector?: string): Promise<string> { |
| 220 | return this.command('scroll', selector ? [selector] : []); |
no test coverage detected