mirror of
https://github.com/vector-im/element-call.git
synced 2026-08-05 19:59:20 +00:00
test: Temporary disable widget test on firefox
This commit is contained in:
@@ -9,89 +9,100 @@ import { expect, test } from "@playwright/test";
|
|||||||
|
|
||||||
import { widgetTest } from "../fixtures/widget-user.ts";
|
import { widgetTest } from "../fixtures/widget-user.ts";
|
||||||
|
|
||||||
widgetTest("Start a new call as widget", async ({ asWidget, browserName }) => {
|
test.describe("chromium only", () => {
|
||||||
test.skip(
|
test.skip(({ browserName }) => browserName !== "chromium", "Chromium only!");
|
||||||
browserName === "firefox",
|
|
||||||
"This test is not working on firefox, after hangup brooks is locked in a strange state with a blank widget",
|
widgetTest(
|
||||||
|
"Start a new call as widget",
|
||||||
|
async ({ asWidget, browserName }) => {
|
||||||
|
test.skip(
|
||||||
|
browserName === "firefox",
|
||||||
|
"This test is not working on firefox, after hangup brooks is locked in a strange state with a blank widget",
|
||||||
|
);
|
||||||
|
|
||||||
|
const { brooks, whistler } = asWidget;
|
||||||
|
|
||||||
|
await expect(
|
||||||
|
brooks.page.getByRole("button", { name: "Video call" }),
|
||||||
|
).toBeVisible();
|
||||||
|
await brooks.page.getByRole("button", { name: "Video call" }).click();
|
||||||
|
|
||||||
|
await expect(
|
||||||
|
brooks.page.getByRole("menuitem", { name: "Legacy Call" }),
|
||||||
|
).toBeVisible();
|
||||||
|
await expect(
|
||||||
|
brooks.page.getByRole("menuitem", { name: "Element Call" }),
|
||||||
|
).toBeVisible();
|
||||||
|
|
||||||
|
await brooks.page.getByRole("menuitem", { name: "Element Call" }).click();
|
||||||
|
|
||||||
|
await expect(
|
||||||
|
brooks.page
|
||||||
|
.locator('iframe[title="Element Call"]')
|
||||||
|
.contentFrame()
|
||||||
|
.getByTestId("lobby_joinCall"),
|
||||||
|
).toBeVisible();
|
||||||
|
|
||||||
|
await brooks.page
|
||||||
|
.locator('iframe[title="Element Call"]')
|
||||||
|
.contentFrame()
|
||||||
|
.getByTestId("lobby_joinCall")
|
||||||
|
.click();
|
||||||
|
|
||||||
|
// Check the join indicator on the room list
|
||||||
|
await expect(
|
||||||
|
brooks.page.locator("div").filter({ hasText: /^Joined • 1$/ }),
|
||||||
|
).toBeVisible();
|
||||||
|
|
||||||
|
// Join from the other side
|
||||||
|
await expect(whistler.page.getByText("Video call started")).toBeVisible();
|
||||||
|
await expect(
|
||||||
|
whistler.page.getByRole("button", { name: "Join" }),
|
||||||
|
).toBeVisible();
|
||||||
|
await whistler.page.getByRole("button", { name: "Join" }).click();
|
||||||
|
|
||||||
|
await expect(
|
||||||
|
whistler.page
|
||||||
|
.locator('iframe[title="Element Call"]')
|
||||||
|
.contentFrame()
|
||||||
|
.getByTestId("lobby_joinCall"),
|
||||||
|
).toBeVisible();
|
||||||
|
|
||||||
|
await whistler.page
|
||||||
|
.locator('iframe[title="Element Call"]')
|
||||||
|
.contentFrame()
|
||||||
|
.getByTestId("lobby_joinCall")
|
||||||
|
.click();
|
||||||
|
|
||||||
|
await expect(
|
||||||
|
whistler.page.locator("div").filter({ hasText: /^Joined • 2$/ }),
|
||||||
|
).toBeVisible();
|
||||||
|
|
||||||
|
await expect(
|
||||||
|
brooks.page.locator("div").filter({ hasText: /^Joined • 2$/ }),
|
||||||
|
).toBeVisible();
|
||||||
|
|
||||||
|
// Whistler leaves
|
||||||
|
await whistler.page.waitForTimeout(1000);
|
||||||
|
await whistler.page
|
||||||
|
.locator('iframe[title="Element Call"]')
|
||||||
|
.contentFrame()
|
||||||
|
.getByTestId("incall_leave")
|
||||||
|
.click();
|
||||||
|
|
||||||
|
// Brooks leaves
|
||||||
|
await brooks.page
|
||||||
|
.locator('iframe[title="Element Call"]')
|
||||||
|
.contentFrame()
|
||||||
|
.getByTestId("incall_leave")
|
||||||
|
.click();
|
||||||
|
|
||||||
|
await expect(
|
||||||
|
whistler.page.locator(".mx_BasicMessageComposer"),
|
||||||
|
).toBeVisible();
|
||||||
|
await expect(
|
||||||
|
brooks.page.locator(".mx_BasicMessageComposer"),
|
||||||
|
).toBeVisible();
|
||||||
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
const { brooks, whistler } = asWidget;
|
|
||||||
|
|
||||||
await expect(
|
|
||||||
brooks.page.getByRole("button", { name: "Video call" }),
|
|
||||||
).toBeVisible();
|
|
||||||
await brooks.page.getByRole("button", { name: "Video call" }).click();
|
|
||||||
|
|
||||||
await expect(
|
|
||||||
brooks.page.getByRole("menuitem", { name: "Legacy Call" }),
|
|
||||||
).toBeVisible();
|
|
||||||
await expect(
|
|
||||||
brooks.page.getByRole("menuitem", { name: "Element Call" }),
|
|
||||||
).toBeVisible();
|
|
||||||
|
|
||||||
await brooks.page.getByRole("menuitem", { name: "Element Call" }).click();
|
|
||||||
|
|
||||||
await expect(
|
|
||||||
brooks.page
|
|
||||||
.locator('iframe[title="Element Call"]')
|
|
||||||
.contentFrame()
|
|
||||||
.getByTestId("lobby_joinCall"),
|
|
||||||
).toBeVisible();
|
|
||||||
|
|
||||||
await brooks.page
|
|
||||||
.locator('iframe[title="Element Call"]')
|
|
||||||
.contentFrame()
|
|
||||||
.getByTestId("lobby_joinCall")
|
|
||||||
.click();
|
|
||||||
|
|
||||||
// Check the join indicator on the room list
|
|
||||||
await expect(
|
|
||||||
brooks.page.locator("div").filter({ hasText: /^Joined • 1$/ }),
|
|
||||||
).toBeVisible();
|
|
||||||
|
|
||||||
// Join from the other side
|
|
||||||
await expect(whistler.page.getByText("Video call started")).toBeVisible();
|
|
||||||
await expect(
|
|
||||||
whistler.page.getByRole("button", { name: "Join" }),
|
|
||||||
).toBeVisible();
|
|
||||||
await whistler.page.getByRole("button", { name: "Join" }).click();
|
|
||||||
|
|
||||||
await expect(
|
|
||||||
whistler.page
|
|
||||||
.locator('iframe[title="Element Call"]')
|
|
||||||
.contentFrame()
|
|
||||||
.getByTestId("lobby_joinCall"),
|
|
||||||
).toBeVisible();
|
|
||||||
|
|
||||||
await whistler.page
|
|
||||||
.locator('iframe[title="Element Call"]')
|
|
||||||
.contentFrame()
|
|
||||||
.getByTestId("lobby_joinCall")
|
|
||||||
.click();
|
|
||||||
|
|
||||||
await expect(
|
|
||||||
whistler.page.locator("div").filter({ hasText: /^Joined • 2$/ }),
|
|
||||||
).toBeVisible();
|
|
||||||
|
|
||||||
await expect(
|
|
||||||
brooks.page.locator("div").filter({ hasText: /^Joined • 2$/ }),
|
|
||||||
).toBeVisible();
|
|
||||||
|
|
||||||
// Whistler leaves
|
|
||||||
await whistler.page.waitForTimeout(1000);
|
|
||||||
await whistler.page
|
|
||||||
.locator('iframe[title="Element Call"]')
|
|
||||||
.contentFrame()
|
|
||||||
.getByTestId("incall_leave")
|
|
||||||
.click();
|
|
||||||
|
|
||||||
// Brooks leaves
|
|
||||||
await brooks.page
|
|
||||||
.locator('iframe[title="Element Call"]')
|
|
||||||
.contentFrame()
|
|
||||||
.getByTestId("incall_leave")
|
|
||||||
.click();
|
|
||||||
|
|
||||||
await expect(whistler.page.locator(".mx_BasicMessageComposer")).toBeVisible();
|
|
||||||
await expect(brooks.page.locator(".mx_BasicMessageComposer")).toBeVisible();
|
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user