activate click tests

This commit is contained in:
Timo K
2026-03-11 14:05:09 +01:00
parent 1e400bc550
commit 3a9d394529

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