Back to all steps

Click

Step fields
selector (text)
Click an element. Pass visible button/link text or a CSS selector.
Examples: Login · text=Logout · #submit-btn · button.primary · a[href="/about"]
Usage example

Click an element. You can pass the visible text of a button/link or a CSS selector.

Examples:

  • Sign in — by button text
  • text=Logout — explicit match by text
  • #submit-btn — by id
  • button.primary — a button with the class primary
  • a[href="/about"] — a link with a specific href
  • nav > a:nth-child(2) — the second link in the navigation

Hint: if the button text is complex or appears multiple times, use a CSS selector.