(options?: UserEventClickOptions)
| 55 | } |
| 56 | |
| 57 | public override click(options?: UserEventClickOptions): Promise<void> { |
| 58 | return ensureAwaited(async (error) => { |
| 59 | const element = await this.findElement(options) |
| 60 | return this.withElement(element, error).click(processClickOptions(options)) |
| 61 | }) |
| 62 | } |
| 63 | |
| 64 | public override dblClick(options?: UserEventClickOptions): Promise<void> { |
| 65 | return ensureAwaited(async (error) => { |
nothing calls this directly
no test coverage detected