added a wait in the tests for after saving dmn and bpmn diagrams w/ burnettk

This commit is contained in:
jasquat 2022-06-20 09:21:35 -04:00
parent 893c345ba8
commit 49fc889456
1 changed files with 4 additions and 0 deletions

View File

@ -78,6 +78,9 @@ function updateDmnText(oldText, newText, elementId="wonderful_process", dmnFile=
// we have to click on something in order to set the new dmn xml // we have to click on something in order to set the new dmn xml
cy.contains(`Process Model File: ${dmnFile}`).click(); cy.contains(`Process Model File: ${dmnFile}`).click();
cy.contains('Save').click(); cy.contains('Save').click();
// just to see if we are cancelling this save request by navigating away from this page using the breadcrumb
cy.wait(100);
} }
function updateBpmnPythonScript(pythonScript, bpmnFile, elementId="process_script") { function updateBpmnPythonScript(pythonScript, bpmnFile, elementId="process_script") {
@ -86,4 +89,5 @@ function updateBpmnPythonScript(pythonScript, bpmnFile, elementId="process_scrip
cy.get('#bio-properties-panel-pythonScript').clear().type(pythonScript); cy.get('#bio-properties-panel-pythonScript').clear().type(pythonScript);
cy.contains(`Process Model File: ${bpmnFile}`).click(); cy.contains(`Process Model File: ${bpmnFile}`).click();
cy.contains('Save').click(); cy.contains('Save').click();
cy.wait(100);
} }