(text: string, options?: UserEventFillOptions)
| 118 | } |
| 119 | |
| 120 | public override fill(text: string, options?: UserEventFillOptions): Promise<void> { |
| 121 | return ensureAwaited(async (error) => { |
| 122 | const element = await this.findElement(options) |
| 123 | return this.withElement(element, error).fill(text, options) |
| 124 | }) |
| 125 | } |
| 126 | |
| 127 | public override screenshot(options?: LocatorScreenshotOptions): Promise<any> { |
| 128 | return ensureAwaited(async (error) => { |
nothing calls this directly
no test coverage detected