(file: string | string[] | File | File[], options?: UserEventUploadOptions)
| 66 | } |
| 67 | |
| 68 | async upload(file: string | string[] | File | File[], options?: UserEventUploadOptions): Promise<void> { |
| 69 | const element = await this.findElement(options) |
| 70 | return userEvent.upload(element, file) |
| 71 | } |
| 72 | |
| 73 | async wheel(options: UserEventWheelOptions): Promise<void> { |
| 74 | const element = await this.findElement(options) |
nothing calls this directly
no test coverage detected