在 Puppeteer 程式碼中建立延遲
在 Puppeteer 中,可能有必要在執行後續程式碼行之前引入有意的延遲。為了解決這個問題,您可以選擇以下解決方案之一:
使用Promise 函數
為了靈活且獨立的延遲,請考慮使用簡單的Promise 函數:
function delay(time) { return new Promise(function(resolve) { setTimeout(resolve, time) }); }
要實現延遲,請進行以下更改:
console.log('before waiting'); await delay(4000); console.log('after waiting');
使用Puppeteer 的內建函數
如果您想保留在Puppeteer 環境中,利用內建的waitForTimeout函數:
await page.waitForTimeout(4000)
此函數將有效地將程式碼執行暫停指定的毫秒數。
使用評估的Promises
如果您仍然喜歡使用page.evaluate,您可以修改當前的程式碼以在所需的延遲後解決承諾:
await page.evaluate(async() => { await new Promise(function(resolve) { setTimeout(resolve, 1000) }); });
但是,這種方法可能不適合由於其可能過於複雜,因此與前兩種方法一樣實用。
以上是如何在 Puppeteer 程式碼中引入延遲?的詳細內容。更多資訊請關注PHP中文網其他相關文章!