This commit is contained in:
Lukáš Kaňka
2024-01-30 13:45:32 +01:00
commit 01b2682a20
7 changed files with 646 additions and 0 deletions

8
tests/first.test.ts Normal file
View File

@ -0,0 +1,8 @@
import { test, expect } from "@playwright/test";
import { HomePage } from "../page-objects/HomePage";
// test odsouhlasení cookies
test("TestPage", async ({ page }) => {
const homePage = new HomePage(page);
await homePage.gotoHome();
});