← Back to Documentation

Action Schema

Click Action

{
  "type": "click",
  "data": {
    "x": 100,
    "y": 200,
    "button": "left",
    "clicks": 1
  }
}

Type Action

{
  "type": "type",
  "data": {
    "text": "Hello world",
    "humanize": true
  }
}

Wait Action

{
  "type": "wait",
  "data": {
    "duration": 1000,
    "randomize": true,
    "randomRange": 200
  }
}

Loop Action

{
  "type": "loop",
  "data": {
    "iterations": 10,
    "infinite": false
  }
}