We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70b62d1 commit ec92ab0Copy full SHA for ec92ab0
src/frontend/tests/e2e-playwright/fixtures/managePage.ts
@@ -9,7 +9,6 @@ class ManagePage {
9
}
10
11
async signOut() {
12
- await this.#openMenuOnMobile();
13
await this.#page.getByRole("button", { name: "Switch identity" }).click();
14
await this.#page
15
.getByRole("group")
@@ -31,15 +30,6 @@ class ManagePage {
31
30
this.#page.getByText("Your identity and sign-in methods at a glance."),
32
).toBeVisible();
33
34
-
35
- async #openMenuOnMobile() {
36
- const menuButton = this.#page
37
- .getByRole("banner")
38
- .getByRole("button", { name: "Open menu" });
39
- if (await menuButton.isVisible()) {
40
- await menuButton.click();
41
- }
42
43
44
45
export const test = base.extend<{
0 commit comments