title |
---|
prevAll |
Get all previous siblings of each DOM element in a set of matched DOM elements.
{% note info %}
The querying behavior of this command matches exactly how {% url .prevAll()
http://api.jquery.com/prevAll %} works in jQuery.
{% endnote %}
.prevAll()
.prevAll(selector)
.prevAll(options)
.prevAll(selector, options)
{% fa fa-check-circle green %} Correct Usage
cy.get('.active').prevAll() // Yield all links previous to `.active`
{% fa fa-exclamation-triangle red %} Incorrect Usage
cy.prevAll() // Errors, cannot be chained off 'cy'
cy.getCookies().prevAll() // Errors, 'getCookies' does not yield DOM element
{% fa fa-angle-right %} selector (String selector)
A selector used to filter matching DOM elements.
{% fa fa-angle-right %} options (Object)
Pass in an options object to change the default behavior of .prevAll()
.
Option | Default | Description |
---|---|---|
log |
true |
{% usage_options log %} |
timeout |
{% url defaultCommandTimeout configuration#Timeouts %} |
{% usage_options timeout .prevAll %} |
{% yields changes_dom_subject_or_subjects .prevAll %}
<ul>
<li>apples</li>
<li>oranges</li>
<li class="third">bananas</li>
<li>pineapples</li>
<li>grapes</li>
</ul>
// yields [<li>apples</li>, <li>oranges</li>]
cy.get('.third').prevAll()
<ul>
<li>apples</li>
<li>oranges</li>
<li>bananas</li>
<li class="selected">pineapples</li>
<li>grapes</li>
</ul>
// yields <li>pineapples</li>
cy.get('li').prevAll('.selected')
{% requirements dom .prevAll %}
{% assertions existence .prevAll %}
{% timeouts existence .prevAll %}
Find all elements before the .active
li
cy.get('.left-nav').find('li.active').prevAll()
The commands above will display in the Command Log as:
{% imgTag /img/api/prevall/find-all-previous-elements-with-optional-selector.png "Command Log prevAll" %}
When clicking on prevAll
within the command log, the console outputs the following:
{% imgTag /img/api/prevall/console-log-all-previous-elements-traversed.png "Console Log prevAll" %}
- {% url
.nextAll()
nextall %} - {% url
.parents()
parents %} - {% url
.prev()
prev %} - {% url
.prevUntil()
prevuntil %}