You can use a little promise function,
function delay(time) {
return new Promise(function(resolve) {
setTimeout(resolve, time)
});
}
Then, call it whenever you want a delay.
console.log('before waiting');
await delay(4000);
console.log('after waiting');
If you must use puppeteer use the builtin waitForTimeout function.
await page.waitForTimeout(4000)
If you still want to use page.evaluate, resolve it after 4 seconds. You are not resolving anything.
await page.evaluate(async() => {
await new Promise(function(resolve) {
setTimeout(resolve, 1000)
});
});
But I guess you can simply use the first two examples.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…