How to create a time delay between 2 macros?

How to create a time delay between 2 macros? e.g. i want 2 sec delay after each click on web page

1 Like

Simple add pause 2000 at the end of first macro :slight_smile:

https://ui.vision/rpa/docs/selenium-ide/pause

pause | 2000 didn’t worked as it throws error like Error.captureStackTrace is not a function.
But yes,

{
    "Command": "pause",
     "Target": "",
      "Value": "2000"
 }

writing it properly worked for me.
Still the real problem is that App just paused and I have to click the resume button every time it gets the pause command.
How to manage it to resume automatically?

Correct PAUSE | 2000 is:

{
    "Command": "pause",
   "Target": "2000",
   "Value": ""
}

What you entered is actually PAUSE | (nothing) => this waits forever until Resume is pressed :wink:

Hey, thanks for the answer.

Do you mind answering this random time delay post?