()
| 309 | } |
| 310 | |
| 311 | async isFocused(): Promise<boolean> { |
| 312 | const input = await this.findTextarea(); |
| 313 | if (input) { |
| 314 | return await input.isFocused(); |
| 315 | } |
| 316 | return false; |
| 317 | } |
| 318 | |
| 319 | async triggerCompositionStart(): Promise<void> { |
| 320 | await browser.execute((selector) => { |
no test coverage detected