(options?: UserEventClearOptions)
| 111 | } |
| 112 | |
| 113 | public override clear(options?: UserEventClearOptions): Promise<void> { |
| 114 | return ensureAwaited(async (error) => { |
| 115 | const element = await this.findElement(options) |
| 116 | return this.withElement(element, error).clear(options) |
| 117 | }) |
| 118 | } |
| 119 | |
| 120 | public override fill(text: string, options?: UserEventFillOptions): Promise<void> { |
| 121 | return ensureAwaited(async (error) => { |
nothing calls this directly
no test coverage detected