test: npx playwright test erfolgreich

This commit is contained in:
ISA
2025-09-03 15:58:11 +02:00
parent 11bd68200b
commit 57ffdecb10
24 changed files with 308 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
import { test } from "@playwright/test";
import { highlightAndExpectVisible } from "@playwright/utils/highlight";
test("AnalogInputsTable renders rows", async ({ page }) => {
await page.goto("/analogInputs");
await highlightAndExpectVisible(page, page.getByRole("table"));
// Mindestens eine Tabellenzeile sichtbar
await highlightAndExpectVisible(page, page.locator("tbody tr").first());
});