Skip to content

Commit

Permalink
Merge pull request #185 from ProcessMaker/updMethodInWatchers
Browse files Browse the repository at this point in the history
updMethodInWatchers
  • Loading branch information
WendyFPM authored Jul 19, 2024
2 parents bc37f23 + 61e11db commit 793cbe6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pages/calcsAndWatchers.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ export class CalcsAndWatchers {
clickOnAddWatchersBtn() {
cy.get(selectors.addWacthersBtn).should('be.visible');
cy.get(selectors.addWacthersBtn).click({ force: true });
cy.wait(1000);
}

//Modal watchers list
Expand Down Expand Up @@ -242,7 +243,7 @@ export class CalcsAndWatchers {

fillWatcherName(watcherName){
cy.get(selectors.watcherName).should('be.visible');
cy.get(selectors.watcherName).type(watcherName).should('have.value',watcherName);
cy.get(selectors.watcherName).type(watcherName,{delay:100}).should('have.value',watcherName);
}

selectVariableToWatch(variableToWatch){
Expand Down

0 comments on commit 793cbe6

Please sign in to comment.