Compare commits

...

1 Commits

Author SHA1 Message Date
Timo K
a1e3cb7f4f activate click tests for pip buttons 2026-03-10 18:30:04 +01:00

View File

@@ -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");
}
});