title |
---|
uncheck |
Uncheck checkbox(es).
.uncheck()
.uncheck(value)
.uncheck(values)
.uncheck(options)
.uncheck(value, options)
.uncheck(values, options)
{% fa fa-check-circle green %} Correct Usage
cy.get('[type="checkbox"]').uncheck() // Unchecks checkbox element
{% fa fa-exclamation-triangle red %} Incorrect Usage
cy.uncheck('[type="checkbox"]') // Errors, cannot be chained off 'cy'
cy.get('p:first').uncheck() // Errors, '.get()' does not yield checkbox
{% fa fa-angle-right %} value (String)
Value of checkbox that should be unchecked.
{% fa fa-angle-right %} values (Array)
Values of checkboxes that should be unchecked.
{% fa fa-angle-right %} options (Object)
Pass in an options object to change the default behavior of .uncheck()
.
Option | Default | Description |
---|---|---|
log |
true |
{% usage_options log %} |
force |
false |
{% usage_options force uncheck %} |
timeout |
{% url defaultCommandTimeout configuration#Timeouts %} |
{% usage_options timeout .uncheck %} |
{% yields same_subject .uncheck %}
cy.get(':checkbox').uncheck()
cy.get('#saveUserName').uncheck()
cy.get('input[type="checkbox"]').uncheck(['ga'])
cy.get('[type="checkbox"]').uncheck(['ga', 'ca'])
.uncheck()
is an "action command" that follows all the rules {% url 'defined here' interacting-with-elements %}.
{% requirements uncheckability .uncheck %}
{% assertions actions .uncheck %}
{% timeouts actions .uncheck %}
Uncheck the first checkbox
cy.get('[data-js="choose-all"]').click()
.find('input[type="checkbox"]').first().uncheck()
The commands above will display in the Command Log as:
{% imgTag /img/api/uncheck/test-unchecking-a-checkbox.png "Command Log uncheck" %}
When clicking on uncheck
within the command log, the console outputs the following:
{% imgTag /img/api/uncheck/console-shows-events-from-clicking-the-checkbox.png "Console Log uncheck" %}
{% history %}
{% url "0.6.12" changelog#0-6-12 %} | Added option force
{% url "0.3.3" changelog#0-3-3 %} | .uncheck()
command added
{% endhistory %}
- {% url
.check()
check %} - {% url
.click()
click %}