Skip to content

Commit

Permalink
Merge pull request #30 from ProcessMaker/searchTestRunMethod
Browse files Browse the repository at this point in the history
search TestRunMethod
  • Loading branch information
WendyFPM authored May 2, 2024
2 parents 44a790d + 289e205 commit 89fa287
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pages/processTesting.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,9 @@ export class ProcessTesting {

//Search Test Run
searchTestRun(value) {
cy.get(selectors.searchTestRun).should('be.visible').clear().type(`${value}{enter}`, { delay: 100 }).should('have.value', value);
cy.get(selectors.searchTestRun).should('be.visible');
cy.get(selectors.searchTestRun).click().clear();
cy.get(selectors.searchTestRun).type(`${value}`, { delay: 100 }).should('have.value', value);
}

//Create Run Test from process configure
Expand Down

0 comments on commit 89fa287

Please sign in to comment.