To get children of DOM elements, use the cy.children() command.
cy.get('.traversal-breadcrumb').children('.active').should('contain', 'Data')
To get the closest ancestor DOM element, use the cy.closest() command.
cy.get('.traversal-badge').closest('ul').should('have.class', 'list-group')
To get a DOM element at a specific index, use the cy.eq() command.
cy.get('.traversal-list>li').eq(1).should('contain', 'siamese')
To get DOM elements that match a specific selector, use the cy.filter() command.
cy.get('.traversal-nav>li').filter('.active').should('contain', 'About')
To get DOM elements that match a specific selector, use the cy.filter() command.
cy.get('.traversal-pagination').find('li').find('a').should('have.length', 7)
To get the first DOM element within elements, use the cy.first() command.
cy.get('.traversal-table td').first().should('contain', '1')
| # | First Name | Last Name |
|---|---|---|
| 1 | Jane | Lane |
| 2 | John | Doe |
To get the last DOM element within elements, use the cy.last() command.
cy.get('.traversal-buttons .btn').last().should('contain', 'Submit')
To get the next sibling DOM element within elements, use the cy.next() command.
cy.get('.traversal-ul').contains('apples').next().should('contain', 'oranges')
To get all of the next sibling DOM elements within elements, use the cy.nextAll() command.
cy.get('.traversal-next-all').contains('oranges').nextAll().should("have.length", 3)
To get all of the next sibling DOM elements within elements until another element, use the cy.nextUntil() command.
cy.get("#veggies").nextUntil("#nuts").should("have.length", 3)
To remove DOM element(s) from the set of elements, use the cy.not() command.
cy.get('.traversal-disabled').not('[disabled]').should('not.contain', 'Disabled')
To get parent DOM element of elements, use the cy.parent() command.
cy.get('.traversal-mark').parent().should('contain', 'Morbi leo risus')
Morbi leo risus, porta ac consectetur ac, highlight vestibulum at eros.
To get parents DOM element of elements, use the cy.parents() command.
cy.get('.traversal-cite').parents().should('match', 'blockquote')
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
To get parents DOM element of elements until other element, use the cy.parentsUntil() command.
cy.get('.clothes-nav').find(".active").parentsUntil('.clothes-nav').should("have.length", 2)
To get the previous sibling DOM element within elements, use the cy.prev() command.
cy.get('.traversal-ul').contains('apples').next().should('contain', 'oranges')
To get all previous sibling DOM elements within elements, use the cy.prevAll() command.
cy.get('.fruits-list').find(".third").prevAll().should("have.length", 2)
To get all previous sibling DOM elements within elements until other element, use the cy.prev() command.
cy.get(".foods-list").find("#nuts").nextUntil("#veggies")
To get all sibling DOM elements of elements, use the cy.siblings() command.
cy.get('.traversal-pills .active').siblings().should('have.length', 2)