()
| 302 | } |
| 303 | |
| 304 | async focus(): Promise<void> { |
| 305 | const input = await this.findTextarea(); |
| 306 | if (input) { |
| 307 | await input.click(); |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | async isFocused(): Promise<boolean> { |
| 312 | const input = await this.findTextarea(); |
nothing calls this directly
no test coverage detected