Files
CPLv4.0/playwright/tests/components/footer/footerTest.ts
2025-09-11 08:38:00 +02:00

15 lines
483 B
TypeScript

import { Page, expect } from "@playwright/test";
/**
* Footer assertions.
*/
export async function footerTest(page: Page) {
await expect(page.getByText(/Littwin Systemtechnik GmbH/)).toBeVisible();
await expect(page.getByText(/Telefon: 04402 972577/)).toBeVisible();
await expect(
page.getByText(/kontakt@littwin-systemtechnik\.de/)
).toBeVisible();
// Handbücher Button/Icon (Text oder Button reicht)
await expect(page.getByText(/Handbücher/)).toBeVisible();
}