Added timeout (#16073)

This commit is contained in:
Andreas Zerbst
2024-04-17 15:30:51 +02:00
committed by GitHub
parent 15b85d0e4a
commit 55f68f477f

View File

@@ -6,6 +6,7 @@ setup('authenticate', async ({page}) => {
const umbracoUi = new UiHelpers(page);
await umbracoUi.goToBackOffice();
await page.waitForTimeout(10000);
await umbracoUi.login.enterEmail(process.env.UMBRACO_USER_LOGIN);
await umbracoUi.login.enterPassword(process.env.UMBRACO_USER_PASSWORD);
await umbracoUi.login.clickLoginButton();