Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 9025

Puppeteerの`waitFor`は`waitForTimeout`に書き換えた方がよいみたい(v5.3.0)

$
0
0

概要

警告が出たので調査

waitFor is deprecated and will be removed in a future release. See https://github.com/puppeteer/puppeteer/issues/6214 for details and how to migrate your code.

結論

-  await page.waitFor(5000)
+  await page.waitForTimeout(5000)

参考

詳しく書いてあるので詳細はGitHubのページを参照してください


Viewing all articles
Browse latest Browse all 9025

Trending Articles