diff --git a/main/tests/cypress/cypress/integration/project/undo_redo/apply.spec.js b/main/tests/cypress/cypress/integration/project/undo_redo/apply.spec.js index 111f47985..417493087 100644 --- a/main/tests/cypress/cypress/integration/project/undo_redo/apply.spec.js +++ b/main/tests/cypress/cypress/integration/project/undo_redo/apply.spec.js @@ -3,7 +3,6 @@ describe(__filename, function () { cy.loadAndVisitProject('food.mini'); cy.get('#or-proj-undoRedo').should('to.exist').should('be.visible').click(); - cy.get('#refine-tabs-history').should('be.visible'); cy.get('#refine-tabs-history .history-panel-controls') .contains('Apply') .click(); diff --git a/main/tests/cypress/cypress/integration/project/undo_redo/extract.spec.js b/main/tests/cypress/cypress/integration/project/undo_redo/extract.spec.js index 087ad9aa9..5d9ad7d32 100644 --- a/main/tests/cypress/cypress/integration/project/undo_redo/extract.spec.js +++ b/main/tests/cypress/cypress/integration/project/undo_redo/extract.spec.js @@ -4,8 +4,7 @@ describe(__filename, function () { cy.deleteColumn('NDB_No'); cy.deleteColumn('Shrt_Desc'); - cy.get('#or-proj-undoRedo').should('to.exist').should('be.visible').click(); - cy.get('#refine-tabs-history').should('be.visible'); + cy.get('#or-proj-undoRedo').click(); cy.get('#refine-tabs-history .history-panel-controls') .contains('Extract') .click(); @@ -55,7 +54,6 @@ describe(__filename, function () { cy.deleteColumn('NDB_No'); cy.deleteColumn('Shrt_Desc'); cy.get('#or-proj-undoRedo').click(); - cy.get('#refine-tabs-history').should('be.visible'); cy.get('#refine-tabs-history .history-panel-controls') .contains('Extract') .click(); @@ -124,7 +122,6 @@ describe(__filename, function () { cy.loadAndVisitProject('food.mini'); cy.deleteColumn('NDB_No'); cy.get('#or-proj-undoRedo').click(); - cy.get('#refine-tabs-history').should('be.visible'); cy.get('#refine-tabs-history .history-panel-controls') .contains('Extract') .click(); @@ -140,7 +137,7 @@ describe(__filename, function () { cy.deleteColumn('Shrt_Desc'); cy.get('#or-proj-undoRedo').click(); - cy.get('#refine-tabs-history').should('be.visible'); + cy.get('#refine-tabs-history .history-panel-controls') .contains('Extract') .click();