Skip to content

Commit

Permalink
search TestRunMethod
Browse files Browse the repository at this point in the history
  • Loading branch information
WendyFPM committed May 2, 2024
1 parent 44a790d commit 289e205
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 289e205

Please sign in to comment.