import { test, expect } from '@playwright/test'; test('test', async ({ page }) => { await page.getByRole('checkbox', { name: 'View more options to select' }).click(); await page.locator('label').filter({ hasText: 'Select this page' }).locator('div').first().click(); await page.getByRole('button', { name: 'Apply' }).click(); await page.getByRole('button', { name: 'Export' }).click(); await page.getByRole('button', { name: 'Export records' }).click(); await page.getByRole('button', { name: 'Clear 25 selected' }).click(); await page.getByRole('button', { name: 'Next' }).click(); });