import { test, expect } from '@playwright/test'; test('should navigate to the map page', async ({ page }) => { await page.goto('/'); await page.getByRole('link', { name: 'Карта' }).click(); await expect(page).toHaveURL('/map'); });