We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a003ebc commit a1f56ebCopy full SHA for a1f56eb
playwright/e2e/left-panel/room-list-panel/room-list.spec.ts
@@ -193,6 +193,9 @@ test.describe("Room list", () => {
193
194
await roomListView.getByRole("option", { name: "Open room room20" }).click();
195
196
+ // Make sure the room with the unread is visible before we press the keyboard action to select it
197
+ await expect(roomListView.getByRole("option", { name: "1 notification" })).toBeVisible();
198
+
199
await page.keyboard.press("Alt+Shift+ArrowDown");
200
201
await expect(page.getByRole("heading", { name: "1 notification", level: 1 })).toBeVisible();
0 commit comments