1 2 3 4 5 6 7 8import { test, expect } from '@playwright/test'; test.describe('Test group', () => { test('seed', async ({ page }) => { await page.goto(''); }); });
1 2 3 4 5 6 7 8
import { test, expect } from '@playwright/test'; test.describe('Test group', () => { test('seed', async ({ page }) => { await page.goto(''); }); });