Last active
October 11, 2018 19:28
-
-
Save giltayar/427b8f2461f80763e5f80c9b949567a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cy.contains('item left') | |
// do the following code on the element that contains "item left". | |
.then(countItemsLeft => { | |
// if the text in the element is "1 items left", log it. | |
if (countItemsLeft.innerText === '1 items left') { | |
console.log('lalala!') | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment