概要
警告が出たので調査
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.
結論
- Puppeteerのバージョンはv5.3.0
- 警告に表示されたリンクを見ただけ: https://github.com/puppeteer/puppeteer/issues/6214
- 単純に
waitFor
をwaitForTimeout
に置き換えれば良さそう
- await page.waitFor(5000)
+ await page.waitForTimeout(5000)
補足
TypeScriptを利用している場合は @types/puppeteer
も最新にすること。
参考
詳しく書いてあるので詳細はGitHubのページを参照してください