Skip to content

Commit

Permalink
updateSearchScreenMethod
Browse files Browse the repository at this point in the history
  • Loading branch information
WendyFPM committed Sep 24, 2024
1 parent bdcf000 commit 0b02163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/screens.js
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ export class Screens {
searchScreen(screenName, option = 'edit') {
cy.get(Selectors.loadingSpinnerScreen).should('not.be.visible');
cy.wait(3000);
cy.get(Selectors.searchInputBox).first().type(screenName).should('have.value', screenName);
cy.get(Selectors.searchInputBox).first().type(screenName, { delay: 200}).type(" ").type("{backspace}").should('have.value', screenName);
cy.get(Selectors.loadingSpinnerScreen).should('not.be.visible');
this.pressThreePointsTable();
switch (option) {
Expand Down

0 comments on commit 0b02163

Please sign in to comment.