YourTravelAssistant_Playwright/tests/menuButton.test.ts

17 lines
467 B
TypeScript
Raw Permalink Normal View History

2024-02-01 21:47:24 +00:00
import { test, expect } from "@playwright/test";
import { HomePage } from "../page-objects/HomePage";
// test odsouhlasení cookies
test("Menu button test", async ({ page }) => {
const homePage = new HomePage(page);
await await (
await (
await (
await (
await (await homePage.gotoHome()).clickAboutUsButton()
).clickWhatWeDoButton()
).clickOurTripsButton()
).clickWhereToGoButton()
).clickReviewButtonClick();
});