Files
crank/apps/ui/tests/e2e/operations.spec.js
T
2026-04-05 22:22:44 +03:00

12 lines
630 B
JavaScript

const { test, expect } = require('@playwright/test');
const { login, localized } = require('./helpers');
test('operations page shows demo catalog and filter works', async ({ page }) => {
await login(page);
await expect(page.locator('.page-heading')).toHaveText(localized('Operations', 'Операции'));
await expect(page.locator('tbody tr')).toHaveCount(4);
await page.getByPlaceholder(localized('Search operations', 'Поиск операций')).fill('support');
await expect(page.locator('tbody tr')).toHaveCount(1);
await expect(page.locator('tbody tr').first()).toContainText(/support_lookup_ticket/i);
});