From a9a1394a4a3acf8f7843f0e1c0667360630ab858 Mon Sep 17 00:00:00 2001 From: Dominika Zemanovicova Date: Fri, 10 Jan 2025 12:21:45 +0100 Subject: [PATCH] Remove unnecessary visible check Signed-off-by: Dominika Zemanovicova --- e2e-tests/playwright/utils/ui-helper.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/e2e-tests/playwright/utils/ui-helper.ts b/e2e-tests/playwright/utils/ui-helper.ts index a1499ca532..ff33c10f7e 100644 --- a/e2e-tests/playwright/utils/ui-helper.ts +++ b/e2e-tests/playwright/utils/ui-helper.ts @@ -428,7 +428,6 @@ export class UIhelper { .locator(UI_HELPER_ELEMENTS.MuiCardRoot(cardText)) .first(); await cardLocator.scrollIntoViewIfNeeded(); - await expect(cardLocator).toBeVisible(); await cardLocator .getByRole("button", { name: btnText, exact: exact }) .first()