diff --git a/cypress/integration/query_report.js b/cypress/integration/query_report.js index c76098053c..4d8018c2d6 100644 --- a/cypress/integration/query_report.js +++ b/cypress/integration/query_report.js @@ -12,14 +12,14 @@ context('Form', () => { cy.get('#page-query-report input[data-fieldname="doctype"]').as('input-test'); cy.get('@input-test').focus().type('Role', { delay: 100 }); cy.get('.menu-btn-group .btn').click({force: true}); - cy.get('.grey-link:contains("Add Column")').wait(100).click(); + cy.get('.grey-link:contains("Add Column")').wait(100).click({force: true}); cy.get('.modal-dialog select[data-fieldname="doctype"]').select("Role"); cy.get('.modal-dialog select[data-fieldname="field"]').select("Role Name"); cy.get('.modal-dialog select[data-fieldname="insert_after"]').select("Name"); - cy.get('.modal-dialog .btn-primary:contains("Submit")').click(); - cy.get('.menu-btn-group .btn').click(); - cy.get('.grey-link:contains("Save")').click(); + cy.get('.modal-dialog .btn-primary:contains("Submit")').click({force: true}); + cy.get('.menu-btn-group .btn').click({force: true}); + cy.get('.grey-link:contains("Save")').click({force: true}); cy.get('.modal-dialog input[data-fieldname="report_name"]').type("Test Report"); - cy.get('.modal:visible .btn-primary:contains("Submit")').click(); + cy.get('.modal:visible .btn-primary:contains("Submit")').click({force: true}); }); }); \ No newline at end of file