diff --git a/test/cypress/cypress/support/index.js b/test/cypress/cypress/support/index.js index 7fc35411ba..78f10d2c17 100644 --- a/test/cypress/cypress/support/index.js +++ b/test/cypress/cypress/support/index.js @@ -49,8 +49,7 @@ before(() => { login ? login() : cy.log(`Error! loginMethod: "${loginMethod}" is not recognized`); if (Cypress.env('type') != 'odfe') { - cy.get('react-component[name="StatsOverview"]', { timeout: 15000 }) - cy.get('react-component[name="OverviewWelcome"]', { timeout: 15000 }) + cy.wait(15000); validateURLIncludes(OVERVIEW_URL); } else { @@ -75,11 +74,6 @@ beforeEach(() => { }); }) cy.setSessionStorage('healthCheck', 'executed'); - - if (Cypress.env('type') == 'wzd') { navigate("/"); - cy.get('nav #selectAPIBar').select('mock'); } - - -}) + ) \ No newline at end of file