-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathheader-mount-points.spec.ts
42 lines (37 loc) · 1.31 KB
/
header-mount-points.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { expect, test } from "@playwright/test";
import { UIhelper } from "../utils/ui-helper";
import { Common } from "../utils/common";
test.describe("Header mount points", () => {
let common: Common;
let uiHelper: UIhelper;
test.beforeEach(async ({ page }) => {
common = new Common(page);
uiHelper = new UIhelper(page);
await common.loginAsGuest();
await expect(page.locator("nav[id='global-header']")).toBeVisible();
});
test("Verify that additional logo component in global header is visible", async ({
page,
}) => {
const header = page.locator("nav[id='global-header']");
await expect(header).toBeVisible();
uiHelper.verifyLink({ label: "test-logo" });
});
test("Verify that additional header button component from a custom header plugin in global header is visible", async ({
page,
}) => {
const header = page.locator("nav[id='global-header']");
await expect(header).toBeVisible();
expect(
await header.locator("button", { hasText: "Test Button" }).count(),
).toBe(1);
});
test("Verify that additional header from a custom header plugin besides the default one is visible", async ({
page,
}) => {
const header = page.locator("header", {
hasText: "This is a test header!",
});
await expect(header).toBeVisible();
});
});