Skip to content

Commit 6f04421

Browse files
committed
another one
1 parent 1b478af commit 6f04421

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/e2e/tests/deployment/appearance.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ test("set service banner", async ({ page }) => {
6868
const message = "Mary has a little lamb.";
6969

7070
// Fill out the form
71-
const form = page.locator("form", { hasText: "Service Banner" });
72-
await form.getByLabel("Enabled", { exact: true }).check();
71+
await page.getByRole("button", { name: "New" }).click();
72+
const form = page.getByRole("presentation");
7373
await form.getByLabel("Message", { exact: true }).fill(message);
74-
await form.getByRole("button", { name: "Submit" }).click();
74+
await form.getByRole("button", { name: "Update" }).click();
7575

7676
// Verify service banner
7777
await page.goto("/workspaces", { waitUntil: "domcontentloaded" });

0 commit comments

Comments
 (0)