Back to Library
UI
Table Pagination Validation
Prompt
Generate a Playwright test that navigates through paginated table and validates row count consistency and navigation controls.
Example Code
await page.click('#next'); await expect(page.locator('table tr')).toHaveCount(10);Quick Actions
PRO TIP
Paste this prompt as a comment in your .spec.ts file and let Copilot generate the test.