Skip to content

Instantly share code, notes, and snippets.

@giltayar
Last active October 11, 2018 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giltayar/427b8f2461f80763e5f80c9b949567a6 to your computer and use it in GitHub Desktop.
Save giltayar/427b8f2461f80763e5f80c9b949567a6 to your computer and use it in GitHub Desktop.
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