(text: string, options?: UserEventFillOptions)
| 61 | } |
| 62 | |
| 63 | async fill(text: string, options?: UserEventFillOptions): Promise<void> { |
| 64 | const element = await this.findElement(options) |
| 65 | return userEvent.fill(element, text) |
| 66 | } |
| 67 | |
| 68 | async upload(file: string | string[] | File | File[], options?: UserEventUploadOptions): Promise<void> { |
| 69 | const element = await this.findElement(options) |
nothing calls this directly
no test coverage detected