MCPcopy Index your code
hub / github.com/codeaashu/claude-code / moveAndSettle

Function moveAndSettle

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

Source from the content-addressed store, hash-verified

111const MOVE_SETTLE_MS = 50
112
113async function moveAndSettle(
114 input: Input,
115 x: number,
116 y: number,
117): Promise<void> {
118 await input.moveMouse(x, y, false)
119 await sleep(MOVE_SETTLE_MS)
120}
121
122/**
123 * 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 1

sleepFunction · 0.50

Tested by

no test coverage detected