Skip to main content
The Move Mouse command (Command Type: 1) moves the mouse pointer across a browser page with a specified level of randomness to simulate human-like behavior.

Command Type

Command Type ID: 1

Parameters

ParameterTypeDescriptionRequired
spreadnumberRandomness of mouse movement (0–100). 0 = straight line, 100 = maximum randomnessYes
timeoutnumberTimeout for the command in millisecondsYes

Usage Examples

Move Mouse with Moderate Randomness

{
  "command": "move-mouse",
  "params": {
    "spread": 30,
    "timeout": 5000
  }
}

Move Mouse in a Straight Line

{
  "command": "move-mouse",
  "params": {
    "spread": 0,
    "timeout": 3000
  }
}

Common Use Cases

  • Bot Detection Evasion: Simulate natural mouse movement before clicking
  • Human-Like Navigation: Add randomness to automated interactions