From 9a52301e4c21c2ea5d96c9fc1eecaf1dd42047cb Mon Sep 17 00:00:00 2001 From: Ioan Moldovan Date: Tue, 14 May 2024 21:13:30 -0400 Subject: [PATCH] added timeout --- test/source/tests/setup.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/source/tests/setup.ts b/test/source/tests/setup.ts index 8499e7c0619..ae556aa5eaa 100644 --- a/test/source/tests/setup.ts +++ b/test/source/tests/setup.ts @@ -1534,9 +1534,11 @@ AN8G3r5Htj8olot+jm9mIa5XLXWzMNUZgg== await gmailPage.close(); // 6. EKM returns a newer version of the existing key, entering the passphrase, update toast gmailPage = await browser.newMockGmailPage(t, extraAuthHeaders); + await Util.sleep(2); await gmailPage.waitAll('@dialog-passphrase'); { const passphraseDialog = await gmailPage.getFrame(['passphrase.htm']); + await Util.sleep(2); await passphraseDialog.waitForContent('@passphrase-text', 'Enter FlowCrypt pass phrase to keep your account keys up to date'); await passphraseDialog.waitAndType('@input-pass-phrase', passphrase); await passphraseDialog.waitAndClick('@action-confirm-pass-phrase-entry');