How to add Random Time Delay on Web browsing

Use this to wait between 1 and 60 seconds:

{
  "Command": "executeScript_Sandbox",
  "Target": "return 1000 +  Math.floor(Math.random()*60000);",
  "Value": "waittime"
},
{
  "Command": "pause",
  "Target": "${waittime}",
  "Value": ""
},

(from here: Random variable )

2 Likes