Example of incorrect code for this rule:
await page.waitForSelector('#foo')
Examples of correct code for this rule:
await page.waitForLoadState()
await page.waitForURL('/home')
await page.waitForFunction(() => window.innerWidth < 100)
Example of incorrect code for this rule:
await page.waitForSelector('#foo')
Examples of correct code for this rule:
await page.waitForLoadState()
await page.waitForURL('/home')
await page.waitForFunction(() => window.innerWidth < 100)