We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf28f9c commit 9cca3acCopy full SHA for 9cca3ac
1 file changed
packages/testsuite/cypress/support/form-editing.ts
@@ -17,7 +17,7 @@ Cypress.Commands.add("cancelForm", (formId) => {
17
18
Cypress.Commands.add("resetForm", (formId, managementApi, address) => {
19
const resetButton = "#" + formId + ' a.clickable[data-operation="reset"';
20
- cy.get(resetButton).click();
+ cy.get(resetButton).click({ force: true });
21
cy.get("body").then(($body) => {
22
if ($body.find(".modal-footer .btn-hal.btn-primary").length) {
23
cy.get(".modal-footer .btn-hal.btn-primary").click({ force: true });
0 commit comments