MCPcopy Create free account
hub / github.com/claude-code-best/claude-code / moveAndSettle

Function moveAndSettle

src/utils/computerUse/executor.ts:170–177  ·  view source on GitHub ↗
(
  input: Input,
  x: number,
  y: number,
)

Source from the content-addressed store, hash-verified

168const MOVE_SETTLE_MS = 50
169
170async function moveAndSettle(
171 input: Input,
172 x: number,
173 y: number,
174): Promise<void> {
175 await input.moveMouse(x, y, false)
176 await sleep(MOVE_SETTLE_MS)
177}
178
179/**
180 * Release `pressed` in reverse (last pressed = first released). Errors are

Callers 5

animatedMoveFunction · 0.85
moveMouseFunction · 0.85
clickFunction · 0.85
dragFunction · 0.85
scrollFunction · 0.85

Calls 2

moveMouseMethod · 0.65
sleepFunction · 0.50

Tested by

no test coverage detected