Get to know one of the differences between the commands cy.get
and cy.contains
Here's a simple but helpful piece of information to better use Cypress and understand when to use one command or another.
Do you know the difference between the two lines of code below?
cy.get('tr:contains(User 1)')
cy.contains('tr', 'User 1')
They look quite similar, don't they?
However, they are actually different.
While cy.get
gets one or more DOM elements.
cy.contains
gets only one DOM element.
Here's an example where we need to combine cy.get
with jQuery's contains
selector instead of using cy.contains
.
Just to reinforce.
cy.get('tr:contains(User 1)') // get ALL table rows which contain User 1 in their content
cy.contains('tr', 'User 1') // get the first table row which contains User 1 in its content
I hope you find this helpful information.
Did you like the content? Leave a comment.
Curious and want to learn more about Cypress Testing Automation?
Check out my online courses on Udemy.
๐ Until next time, and happy testing!
This content was translated to Portuguese and can be found on the Talking About Testing blog.
Top comments (2)
Thank you it helped a lot to understand difference between cy.get() and cy.contain(). While I was learning about Cypress assertion library I came across interesting article on "Complete guide to cy.should() command". It also explain about how to use cy.should() with cy.get() and cy.contain().
Cool, thanks for sharing.