diff --git a/test/e2e/tests/vault-corruption/vault-corruption.spec.ts b/test/e2e/tests/vault-corruption/vault-corruption.spec.ts index 9a22b7f27bc2..b7a1f45eb655 100644 --- a/test/e2e/tests/vault-corruption/vault-corruption.spec.ts +++ b/test/e2e/tests/vault-corruption/vault-corruption.spec.ts @@ -120,17 +120,8 @@ describe('Vault Corruption', function () { * @param driver - The WebDriver instance. */ async function waitForVaultRestorePage(driver: Driver) { - await driver.waitUntil( - async () => { - await driver.navigate(PAGES.HOME, { waitForControllers: false }); - const title = await driver.driver.getTitle(); - // the browser will return an error message for our UI's HOME page until - // the extension has restarted - return title === WINDOW_TITLES.ExtensionInFullScreenView; - }, - // reload and check title as quickly a possible - { interval: 100, timeout: 10000 }, - ); + await driver.delay(10000) + await driver.navigate(PAGES.HOME, { waitForControllers: false }); await driver.assertElementNotPresent('.loading-logo', { timeout: 10000 }); }