(text: string, options?: UserEventFillOptions)
| 63 | } |
| 64 | |
| 65 | public override fill(text: string, options?: UserEventFillOptions): Promise<void> { |
| 66 | return super.fill(text, processTimeoutOptions(options)) |
| 67 | } |
| 68 | |
| 69 | public override dropTo(target: Locator, options?: UserEventDragAndDropOptions): Promise<void> { |
| 70 | return super.dropTo(target, processTimeoutOptions( |
nothing calls this directly
no test coverage detected