diff --git a/cypress/e2e/models/migration/applicationinventory/application.ts b/cypress/e2e/models/migration/applicationinventory/application.ts index 73443641a..2b3cfeb63 100644 --- a/cypress/e2e/models/migration/applicationinventory/application.ts +++ b/cypress/e2e/models/migration/applicationinventory/application.ts @@ -159,7 +159,10 @@ export class Application { const itemsPerPage = 100; if (forceReload) { cy.visit(Application.fullUrl, { timeout: 35 * SEC }).then((_) => { - cy.get("h1", { timeout: 10 * SEC }).should("contain", applicationInventory); + // Bug MTA-3812 Application Inventory page takes long to load + // TODO: Wait of 10s to be reduced after above bug is fixed + cy.wait(10 * SEC); + cy.get("h1").should("contain", applicationInventory); selectItemsPerPage(itemsPerPage); }); return;