我想知道是否有与Selenium中类似的方式来等待文本出现在特定元素上。我已经尝试过类似的方法,但是似乎没有等待:
await page.waitForSelector('.count', {visible: true});
最佳答案
您可以使用waitForFunction
。参见https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagewaitforfunctionpagefunction-options-args
包括@elena解决方案的完整性:
await page.waitForFunction('document.querySelector(".count").innerText.length == 7');