(x: number, y: number)
| 525 | // ── Mouse ──────────────────────────────────────────────────────────── |
| 526 | |
| 527 | async moveMouse(x: number, y: number): Promise<void> { |
| 528 | await moveAndSettle(requireComputerUseInput(), x, y) |
| 529 | }, |
| 530 | |
| 531 | /** |
| 532 | * Move, then click. Modifiers are press/release bracketed via withModifiers |
nothing calls this directly
no test coverage detected