Actions in Cypress

Understand more about how Cypress actions work in this lesson.

We'll cover the following...

Actions

Once you’ve identified the DOM element or elements you want to interact with, you can then send actions to those elements. Our first test used click to interact with a DOM element on the page and send it an action. Cypress provides basically any action you’d want:

  • Click actions: click, dblclick, rightclick
  • Form actions: check,
...