(x: number, y: number)
| 590 | // ── Mouse ──────────────────────────────────────────────────────────── |
| 591 | |
| 592 | async moveMouse(x: number, y: number): Promise<void> { |
| 593 | await moveAndSettle(requireComputerUseInput(), x, y) |
| 594 | }, |
| 595 | |
| 596 | /** |
| 597 | * Move, then click. Modifiers are press/release bracketed via withModifiers |
nothing calls this directly
no test coverage detected