Harish K
Kilo Contributor

Hi Ella,

 

The easiest solution is to try gs.sleep(milliseconds); 

 

If you will re-use it too often, put the below function in a script include and you can call it wherever required with the required delay in milliseconds.

sleep: function(duration) {
        gs.sleep(duration);
    },

 

Regards,

Harish