Purpose
Use Element Visible when modals, panels, buttons, or messages may exist in the DOM but only matter when visible to the user.
How it works
- Finds the selector.
- Checks whether the element is displayed.
- Routes through true or false based on visibility.
Configuration fields
| Field | Required | Default | Description |
|---|---|---|---|
| Element Selector | Yes | - | CSS selector or XPath to check. |
Output
Boolean branch: true or false.
Usage notes
- Good for dismissing overlays only when they are actually open.
- Use with a Wait for Element before the condition if the UI appears after a delay.