title |
---|
click |
Click a DOM element.
.click()
.click(options)
.click(position)
.click(position, options)
.click(x, y)
.click(x, y, options)
{% fa fa-check-circle green %} Correct Usage
cy.get('.btn').click() // Click on button
cy.focused().click() // Click on el with focus
cy.contains('Welcome').click() // Click on first el containing 'Welcome'
{% fa fa-exclamation-triangle red %} Incorrect Usage
cy.click('.btn') // Errors, cannot be chained off 'cy'
cy.window().click() // Errors, 'window' does not yield DOM element
{% fa fa-angle-right %} position (String)
The position where the click should be issued. The center
position is the default position. Valid positions are topLeft
, top
, topRight
, left
, center
, right
, bottomLeft
, bottom
, and bottomRight
.
{% imgTag "/img/api/coordinates-diagram.jpg" "cypress-command-positions-diagram" %}
{% fa fa-angle-right %} x (Number)
The distance in pixels from the element's left to issue the click.
{% fa fa-angle-right %} y (Number)
The distance in pixels from the element's top to issue the click.
{% fa fa-angle-right %} options (Object)
Pass in an options object to change the default behavior of .click()
.
Option | Default | Description |
---|---|---|
log |
true |
{% usage_options log %} |
force |
false |
{% usage_options force click %} |
multiple |
false |
{% usage_options multiple click %} |
timeout |
{% url defaultCommandTimeout configuration#Timeouts %} |
{% usage_options timeout .click %} |
{% yields same_subject .click %}
cy.get('.nav > a').click()
Click the top right corner of the button.
cy.get('img').click('topRight')
The click below will be issued inside of the element (15px from the left and 40px from the top).
cy.get('#top-banner').click(15, 40)
Forcing a click overrides the {% url 'actionable checks' interacting-with-elements#Forcing %} Cypress applies and will automatically fire the events.
cy.get('.close').as('closeBtn')
cy.get('@closeBtn').click({ force: true })
cy.get('#collapse-sidebar').click('bottomLeft', { force: true })
cy.get('#footer .next').click(5, 60, { force: true })
By default, Cypress will error if you're trying to click multiple elements. By passing { multiple: true }
Cypress will iteratively apply the click to each element and will also log to the {% url 'Command Log' test-runner#Command-Log %} multiple times.
cy.get('[id^=btn]').click({ multiple: true })
The .click()
command may also be fired with key modifiers in combination with the {% url ".type()
" type %} command in order to simulate character sequences while clicking, such as ALT + click
. In order to keep the modifier key active, {release: false}
should be passed to the options of the {% url ".type()
" type %} command.
The following modifiers can be combined with .click()
.
Sequence | Notes |
---|---|
{alt} |
Activates the altKey modifier. Aliases: {option} |
{ctrl} |
Activates the ctrlKey modifier. Aliases: {control} |
{meta} |
Activates the metaKey modifier. Aliases: {command} , {cmd} |
{shift} |
Activates the shiftKey modifier. |
// execute a SHIFT + click on the first <li>
// { release: false } is necessary so that
// SHIFT will not be released after the type command
cy.get('body').type('{shift}', { release: false })
cy.get('li:first').click()
.click()
is an "action command" that follows all the rules {% url 'defined here' interacting-with-elements %}.
For example, clicking a <span>
inside of a <button>
gives the focus to the button, since that's what would happen in a real user scenario.
However, Cypress additionally handles situations where a child descendent is clicked inside of a focusable parent, but actually isn't visually inside the parent (per the CSS Object Model). In those cases if no focusable parent is found the window is given focus instead (which matches real browser behavior).
If the mousedown event has its default action prevented (e.preventDefault()
) then the element will not receive focus as per the spec.
{% requirements dom .click %}
{% assertions actions .click %}
{% timeouts actions .click %}
Click the button
cy.get('.action-btn').click()
The commands above will display in the Command Log as:
{% imgTag /img/api/click/click-button-in-form-during-test.png "Command log for click" %}
When clicking on click
within the command log, the console outputs the following:
{% imgTag /img/api/click/click-coords-and-events-in-console.png "console.log for click" %}
{% history %}
{% url "3.5.0" changelog#3-5-0 %} | Added sending mouseover
, mousemove
, mouseout
, pointerdown
, pointerup
, and pointermove
during .click()
{% endhistory %}
- {% url
.check()
check %} - {% url "
.click()
examples in kitchensink app" https://github.com/cypress-io/cypress-example-kitchensink/blob/master/cypress/integration/examples/actions.spec.js#L66 } %} - {% url
.dblclick()
dblclick %} - {% url
.rightclick()
rightclick %} - {% url
.select()
select %} - {% url
.submit()
submit %} - {% url
.type()
type %} - {% url "'When can the test click?' blog" https://www.cypress.io/blog/2019/01/22/when-can-the-test-click/ %}