Using networkidle
is discouraged in favor of using
web first assertions.
Examples of incorrect code for this rule:
await page.waitForLoadState('networkidle')
await page.waitForURL('...', { waitUntil: 'networkidle' })
await page.goto('...', { waitUntil: 'networkidle' })