10 lines
401 B
TypeScript
10 lines
401 B
TypeScript
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());
|
|
});
|