test: npx playwright test erfolgreich
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { test, expect } from "@playwright/test";
|
||||
import { highlightAndExpectVisible } from "@playwright/utils/highlight";
|
||||
|
||||
test("AnalogInputsChartModal opens after clicking chart button", async ({
|
||||
page,
|
||||
}) => {
|
||||
await page.goto("/analogInputs");
|
||||
// Öffne Modal via Chart-Button (📈)
|
||||
await highlightAndExpectVisible(
|
||||
page,
|
||||
page.getByRole("button", { name: "Messkurve anzeigen" })
|
||||
);
|
||||
await page
|
||||
.getByRole("button", { name: "Messkurve anzeigen" })
|
||||
.first()
|
||||
.click();
|
||||
await highlightAndExpectVisible(page, page.getByRole("dialog"));
|
||||
await expect(page.getByRole("dialog")).toBeVisible();
|
||||
});
|
||||
@@ -0,0 +1,15 @@
|
||||
import { test } from "@playwright/test";
|
||||
import { highlightAndExpectVisible } from "@playwright/utils/highlight";
|
||||
|
||||
test("AnalogInputsDatePicker renders two inputs", async ({ page }) => {
|
||||
await page.goto("/analogInputs");
|
||||
// Öffne erst die Chart-Ansicht (enthält den DatePicker)
|
||||
const chartBtn = page
|
||||
.getByRole("button", { name: "Messkurve anzeigen" })
|
||||
.first();
|
||||
await highlightAndExpectVisible(page, chartBtn);
|
||||
await chartBtn.click();
|
||||
await highlightAndExpectVisible(page, page.getByRole("dialog"));
|
||||
await highlightAndExpectVisible(page, page.getByText("Von"));
|
||||
await highlightAndExpectVisible(page, page.getByText("Bis"));
|
||||
});
|
||||
@@ -0,0 +1,17 @@
|
||||
import { test } from "@playwright/test";
|
||||
import { highlightAndExpectVisible } from "@playwright/utils/highlight";
|
||||
|
||||
test("AnalogInputsSettingsModal opens after clicking settings", async ({
|
||||
page,
|
||||
}) => {
|
||||
await page.goto("/analogInputs");
|
||||
// Wähle die erste Tabellenzeile und in der 5. Spalte (Einstellungen) den Button
|
||||
const firstRow = page.locator("table tbody tr").first();
|
||||
const settingsButton = firstRow.locator("td").nth(4).locator("button");
|
||||
await highlightAndExpectVisible(page, settingsButton);
|
||||
await settingsButton.click();
|
||||
await highlightAndExpectVisible(
|
||||
page,
|
||||
page.getByRole("button", { name: "Modal schließen" })
|
||||
);
|
||||
});
|
||||
@@ -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());
|
||||
});
|
||||
@@ -0,0 +1,12 @@
|
||||
import { test, expect } from "@playwright/test";
|
||||
import { highlightAndExpectVisible } from "@playwright/utils/highlight";
|
||||
|
||||
test("AnalogInputsView shows heading and table", async ({ page }) => {
|
||||
await page.goto("/analogInputs");
|
||||
await highlightAndExpectVisible(
|
||||
page,
|
||||
page.getByRole("heading", { name: "Messwerteingänge" })
|
||||
);
|
||||
await highlightAndExpectVisible(page, page.getByRole("table"));
|
||||
await expect(page.getByRole("table")).toBeVisible();
|
||||
});
|
||||
5
playwright/components/main/analogInputs/xioPMTest.ts
Normal file
5
playwright/components/main/analogInputs/xioPMTest.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { test } from "@playwright/test";
|
||||
|
||||
test.fixme("XioPM visual presence", async ({ page }) => {
|
||||
await page.goto("/analogInputs");
|
||||
});
|
||||
Reference in New Issue
Block a user