title |
---|
select |
Select an <option>
within a <select>
.
.select(value)
.select(values)
.select(value, options)
.select(values, options)
{% fa fa-check-circle green %} Correct Usage
cy.get('select').select('user-1') // Select the 'user-1' option
{% fa fa-exclamation-triangle red %} Incorrect Usage
cy.select('John Adams') // Errors, cannot be chained off 'cy'
cy.location().select() // Errors, 'location' does not yield <select> element
{% fa fa-angle-right %} value (String)
The value
or text content of the <option>
to be selected.
{% fa fa-angle-right %} values (Array)
An array of values
or text contents of the <option>
s to be selected.
{% fa fa-angle-right %} options (Object)
Pass in an options object to change the default behavior of .select()
.
Option | Default | Description |
---|---|---|
log |
true |
{% usage_options log %} |
force |
false |
{% usage_options force select %} |
timeout |
{% url defaultCommandTimeout configuration#Timeouts %} |
{% usage_options timeout .select %} |
{% yields same_subject .select %}
<select>
<option value="456">apples</option>
<option value="457">oranges</option>
<option value="458">bananas</option>
</select>
// yields <option value="456">apples</option>
cy.get('select')
.select('apples').should('have.value', '456')
<select>
<option value="456">apples</option>
<option value="457">oranges</option>
<option value="458">bananas</option>
</select>
// yields <option value="456">apples</option>
cy.get('select')
.select('456').should('have.value', '456')
<select multiple>
<option value="456">apples</option>
<option value="457">oranges</option>
<option value="458">bananas</option>
</select>
cy.get('select')
.select(['apples', 'bananas']).invoke('val')
.should('deep.equal', ['456', '458'])
<select multiple>
<option value="456">apples</option>
<option value="457">oranges</option>
<option value="458">bananas</option>
</select>
cy.get('select')
.select(['456', '457']).invoke('val')
.should('deep.equal', ['456', '457'])
.select()
is an "action command" that follows all the rules {% url 'defined here' interacting-with-elements %}.
{% requirements selectability .select %}
{% assertions actions .select %}
{% timeouts actions .select %}
Select the option with the text "Homer Simpson"
cy.get('select').select('Homer Simpson')
The commands above will display in the Command Log as:
{% imgTag /img/api/select/select-homer-option-from-browser-dropdown.png "Command Log select" %}
When clicking on select
within the command log, the console outputs the following:
{% imgTag /img/api/select/console-log-for-select-shows-option-and-any-events-caused-from-clicking.png "Console Log select" %}
- {% url
.click()
click %}