Purpose
Use Element Exists to handle optional UI such as cookie banners, modals, no-results cards, or alternate layouts.
How it works
- Checks immediately for a matching selector.
- Routes execution through the true connector when found.
- Routes execution through the false connector when not found.
Configuration fields
| Field | Required | Default | Description |
|---|---|---|---|
| Element Selector | Yes | - | CSS selector or XPath to check. |
Output
Boolean branch: true or false.
Usage notes
- Use after an appropriate wait if the optional element appears late.
- Existence does not mean the element is visible or clickable.
- Use Element Visible when display state matters.