MCPcopy Index your code
hub / github.com/QLHazyCoder/FlowPilot / humanStepDelay

Function humanStepDelay

background.js:4199–4202  ·  view source on GitHub ↗
(min = HUMAN_STEP_DELAY_MIN, max = HUMAN_STEP_DELAY_MAX)

Source from the content-addressed store, hash-verified

4197}
4198
4199async function humanStepDelay(min = HUMAN_STEP_DELAY_MIN, max = HUMAN_STEP_DELAY_MAX) {
4200 const duration = Math.floor(Math.random() * (max - min + 1)) + min;
4201 await sleepWithStop(duration);
4202}
4203
4204async function clickWithDebugger(tabId, rect) {
4205 throwIfStopped();

Callers 1

executeStepFunction · 0.85

Calls 1

sleepWithStopFunction · 0.85

Tested by

no test coverage detected