brainy-ram-43776
07/06/2023, 6:27 PMjavascript
const wait = async (milliseconds) => {
await new Promise(resolve => setTimeout(resolve, milliseconds))
}
await wait(5000)
This may not accomplish what you want, but it is a way to force the bot to wait a certain period of time as the step is being executed