Skip to content

Files

Latest commit

4796f75 · Feb 28, 2024

History

History
18 lines (12 loc) · 301 Bytes

no-page-pause.md

File metadata and controls

18 lines (12 loc) · 301 Bytes

Disallow using page.pause (no-page-pause)

Prevent usage of page.pause().

Rule Details

Example of incorrect code for this rule:

await page.click('button')
await page.pause()

Example of correct code for this rule:

await page.click('button')