Skip to content

Commit

Permalink
Merge pull request #243 from ProcessMaker/userAccessLog
Browse files Browse the repository at this point in the history
correctionAccessLog
  • Loading branch information
pablobarrososso authored Sep 25, 2024
2 parents e3cb72c + 77b5b41 commit 47ca6b0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"date-fns": "^3.6.0"
},
"dependencies": {
"@processmaker/cypress-utils": "^1.0.230"
"@processmaker/cypress-utils": "^1.0.231"
}
}
3 changes: 2 additions & 1 deletion pages/userActivityLogging.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ export class userActivityLogging{
accessToSpecificSecurityLog(log){
const xpath = selectors.securityLog.replace('log', log);
cy.xpath(xpath).should('be.visible');
cy.xpath((selectors.securityLog.replace('log', log))[1]).click();
cy.xpath((selectors.securityLog.replace('log', log))).should('be.visible');
cy.xpath((selectors.securityLog.replace('log', log))).click({force:true});
}

/**
Expand Down

0 comments on commit 47ca6b0

Please sign in to comment.