Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2020 09:35 AM
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