Get all ancestors of each DOM element in a set of matched DOM elements up to, but not including, the element provided.
The querying behavior of this command matches exactly how
.parentsUntil()works in jQuery.
.parentsUntil(selector)
.parentsUntil(selector, filter)
.parentsUntil(selector, filter, options)
.parentsUntil(element)
.parentsUntil(element, filter)
.parentsUntil(element, filter, options)
Correct Usage
cy.get('p').parentsUntil('.article') // Yield parents of 'p' until '.article'
Incorrect Usage
cy.parentsUntil() // Errors, cannot be chained off 'cy'
cy.location().parentsUntil('href') // Errors, 'location' does not yield DOM element
selector (String selector)
The selector where you want finding parent ancestors to stop.
element (DOM node, jQuery Object)
The element where you want finding parent ancestors to stop.
filter (String selector)
A selector used to filter matching DOM elements.
options (Object)
Pass in an options object to change the default behavior of .parentsUntil().
| Option | Default | Description |
|---|---|---|
log |
true |
Displays the command in the Command log |
timeout |
defaultCommandTimeout |
Time to wait for .parentsUntil() to resolve before timing out
|
.parentsUntil() yields the new DOM element(s) it found. .active element's ancestors until .nav
<ul class="nav">
<li>
<a href="#">Clothes</a>
<ul class="menu">
<li>
<a href="/shirts">Shirts</a>
</li>
<li class="active">
<a href="/pants">Pants</a>
</li>
</ul>
</li>
</ul>
// yields [ul.menu, li]
cy.get('.active').parentsUntil('.nav')
.parentsUntil() requires being chained off a command that yields DOM element(s). .parentsUntil() will automatically retry until the element(s) exist in the DOM .parentsUntil() will automatically retry until all chained assertions have passed .parentsUntil() can time out waiting for the element(s) to exist in the DOM . .parentsUntil() can time out waiting for assertions you've added to pass. Find all of the active element's ancestors until .nav
cy.get('.active').parentsUntil('.nav')
The commands above will display in the Command Log as:
When clicking on parentsUntil within the command log, the console outputs the following:
© 2017 Cypress.io
Licensed under the MIT License.
https://docs.cypress.io/api/commands/parentsuntil