Menu test
This commit is contained in:
16
tests/menuButton.test.ts
Normal file
16
tests/menuButton.test.ts
Normal file
@ -0,0 +1,16 @@
|
||||
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();
|
||||
});
|
Reference in New Issue
Block a user