Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions playwright/widget/pip-call-button-interaction.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,10 @@ widgetTest("Footer interaction in PiP", async ({ addUser, browserName }) => {
await expect(videoMuteButton).toBeVisible();
await expect(audioMuteButton).toBeVisible();

// TODO once we have the EW version that supports the interactive pip element we can activate those checks
// await videoMuteButton.click();
// await audioMuteButton.click();
await videoMuteButton.click();
await audioMuteButton.click();

// await expect(videoMuteButton).toHaveCSS("disabled", "true");
// await expect(audioMuteButton).toHaveCSS("disabled", "true");
await expect(videoMuteButton).toHaveCSS("disabled", "true");
await expect(audioMuteButton).toHaveCSS("disabled", "true");
}
});
Loading