-
Task
-
Resolution: Done
-
Major
-
None
-
None
-
False
-
-
False
-
-
-
OCMUI Core Sprint 262
Description of the issue
In recent executions indicated that validation cases were some of glitches in verifying the error definitions. Because of the same some of the bug or possible errors were misjudged or failed capture. This is seen around the function call
cypress/pageobjects/CreateRosaWizard.page.js
- isTextContainsInPage(text, present = true) { - if (present) { - cy.get('body').then(($body) => { - if ($body.text().includes(text)) { - cy.contains(text).scrollIntoView().should('be.visible'); - } - }); - } else { - cy.contains(text).should('not.exist'); - } - }