diff --git a/cypress_test/integration_tests/common/desktop_helper.js b/cypress_test/integration_tests/common/desktop_helper.js index 65e9555dc..e2752f848 100644 --- a/cypress_test/integration_tests/common/desktop_helper.js +++ b/cypress_test/integration_tests/common/desktop_helper.js @@ -182,11 +182,11 @@ function doZoom(zoomIn) { }); if (zoomIn) { - cy.get('.w2ui-tb-image.w2ui-icon.zoomin') - .click(); + cy.get('.w2ui-tb-image.w2ui-icon.zoomin').click({force: true}); + cy.wait(500); } else { - cy.get('.w2ui-tb-image.w2ui-icon.zoomout') - .click(); + cy.get('.w2ui-tb-image.w2ui-icon.zoomout').click({force: true}); + cy.wait(500); } cy.get('#tb_actionbar_item_zoom .w2ui-tb-caption')