title |
---|
find |
Get the descendent DOM elements of a specific selector.
{% note info %}
The querying behavior of this command matches exactly how {% url .find()
http://api.jquery.com/find %} works in jQuery.
{% endnote %}
.find(selector)
.find(selector, options)
{% fa fa-check-circle green %} Correct Usage
cy.get('.article').find('footer') // Yield 'footer' within '.article'
{% fa fa-exclamation-triangle red %} Incorrect Usage
cy.find('.progress') // Errors, cannot be chained off 'cy'
cy.exec('node start').find() // Errors, 'exec' does not yield DOM element
{% fa fa-angle-right %} selector (String selector)
A selector used to filter matching descendent DOM elements.
{% fa fa-angle-right %} options (Object)
Pass in an options object to change the default behavior of .find()
.
Option | Default | Description |
---|---|---|
log |
true |
{% usage_options log %} |
timeout |
{% url defaultCommandTimeout configuration#Timeouts %} |
{% usage_options timeout .find %} |
{% yields changes_dom_subject_or_subjects .find %}
<ul id="parent">
<li class="first"></li>
<li class="second"></li>
</ul>
// yields [<li class="first"></li>, <li class="second"></li>]
cy.get('#parent').find('li')
{% requirements dom .find %}
{% assertions existence .find %}
{% timeouts existence .find %}
Find the li's within the nav
cy.get('.left-nav>.nav').find('>li')
The commands above will display in the Command Log as:
{% imgTag /img/api/find/find-li-of-uls-in-test.png "Command Log find" %}
When clicking on the find
command within the command log, the console outputs the following:
{% imgTag /img/api/find/find-in-console-shows-list-and-yields.png "console.log find" %}
- {% url
cy.get()
get %}