From 1568c80ed34fd3e93cc6d82091e9212c19f5390a Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Mon, 8 Dec 2025 21:43:21 +0100 Subject: [PATCH] Update BrowserExtensionPlaywrightTest.cs (#1404) --- .../Common/BrowserExtensionPlaywrightTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/server/Tests/AliasVault.E2ETests/Common/BrowserExtensionPlaywrightTest.cs b/apps/server/Tests/AliasVault.E2ETests/Common/BrowserExtensionPlaywrightTest.cs index 2a1cad266..d53b1e7d9 100644 --- a/apps/server/Tests/AliasVault.E2ETests/Common/BrowserExtensionPlaywrightTest.cs +++ b/apps/server/Tests/AliasVault.E2ETests/Common/BrowserExtensionPlaywrightTest.cs @@ -75,7 +75,7 @@ public class BrowserExtensionPlaywrightTest : ClientPlaywrightTest try { // Try to find an element that's only visible when logged in - await extensionPopup.WaitForSelectorAsync("text=Credentials", new() { Timeout = 500 }); + await extensionPopup.WaitForSelectorAsync("text=Vault", new() { Timeout = 500 }); // If we get here, we're already logged in return extensionPopup; @@ -108,7 +108,7 @@ public class BrowserExtensionPlaywrightTest : ClientPlaywrightTest // Wait for login to complete by waiting for expected text. if (waitForLogin) { - await extensionPopup.WaitForSelectorAsync("text=Credentials"); + await extensionPopup.WaitForSelectorAsync("text=Vault"); } return extensionPopup;