Skip to content

Latest commit

 

History

History
128 lines (84 loc) · 4.45 KB

parentsuntil.md

File metadata and controls

128 lines (84 loc) · 4.45 KB
title
parentsUntil

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.

Syntax

.parentsUntil(selector)
.parentsUntil(selector, filter)
.parentsUntil(selector, filter, options)
.parentsUntil(element)
.parentsUntil(element, filter)
.parentsUntil(element, filter, options)

Usage

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

Arguments

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

Yields

  • .parentsUntil() yields the new DOM element(s) it found.
  • Examples

    Selector

    Find all of the .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')

    Rules

    Requirements

  • .parentsUntil() requires being chained off a command that yields DOM element(s).
  • Assertions

  • .parentsUntil() will automatically retry until the element(s) exist in the DOM
  • .parentsUntil() will automatically retry until all chained assertions have passed
  • Timeouts

  • .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.
  • Command Log

    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:

    See also