Skip to content

Commit

Permalink
Merge pull request #250 from ProcessMaker/fix_smartInbox
Browse files Browse the repository at this point in the history
Fix smart inbox
  • Loading branch information
karlOS123testing authored Sep 26, 2024
2 parents 38eb062 + 781b84e commit 21501d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/smartInbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export class SmartInbox {
searchTask(taskName){
cy.xpath('//tbody//tr').should('be.visible');
cy.get(selectors.searchTask).type(taskName);
cy.get(selectors.searchTask).type('{enter}');
cy.get(selectors.pressSelectOptionSaveSearch).type('{enter}');
cy.get(selectors.loadingSpinnerTask).should('be.visible');
cy.get(selectors.loadingSpinnerTask).should('not.be.visible');
cy.xpath("//table//td//*[contains(text(),'"+taskName+"')]").should('be.visible');
Expand Down Expand Up @@ -75,7 +75,7 @@ export class SmartInbox {

pressSelectOptionSaveSearch(option) {
cy.get(selectors.optionSaveSearch).contains(option).click();
cy.get(selectors.pagination).should("be.visible");
//cy.get(selectors.pagination).should("be.visible");
}

writeRuleName(name) {
Expand Down

0 comments on commit 21501d0

Please sign in to comment.