Hello,
does .waitForNavigation() deprecation means that at some point in the future this method will be deleted?
I was planning replacing this method with .waitForURL() but it doesn't work if navigation happens to the same url. For example:
- Open foo.url/
- Do something that triggers a navigation to the same url
- Use
await page.waitForURL(/\/$/)
- Navigation wait does not happen

Hello,
does
.waitForNavigation()deprecation means that at some point in the future this method will be deleted?I was planning replacing this method with
.waitForURL()but it doesn't work if navigation happens to the same url. For example:await page.waitForURL(/\/$/)