Overview
The Verify Element node (Verify node with domain: browser) validates element states and properties on web pages. It checks for element existence, visibility, text content, attributes, and other conditions. Verification results are stored in context and can optionally fail workflows or continue silently.Configuration
Set to
browser for element verification.Type of verification to perform:
elementExists- Check if element exists in DOMelementVisible- Check if element is visibleelementText- Verify element text contentelementAttribute- Verify element attribute valueelementCount- Verify number of matching elements- Custom verification types from plugins
If
true, failed verifications log warnings but don’t stop workflow execution.Verification Types
elementExists
Check if an element exists in the DOM. Required Fields:selector: Element selectorselectorType: Selector type (default:css)
elementVisible
Check if an element is visible on the page. Required Fields:selector: Element selectorselectorType: Selector typeexpectedValue:true(visible) orfalse(not visible)
elementText
Verify element text content. Required Fields:selector: Element selectorexpectedValue: Expected text contentmatchType: How to match (default:equals)equals: Exact matchcontains: Partial matchstartsWith: Starts with textendsWith: Ends with textregex: Regular expression match
elementAttribute
Verify element attribute value. Required Fields:selector: Element selectorattributeName: Attribute to checkexpectedValue: Expected attribute valuematchType: How to match
elementCount
Verify the number of matching elements. Required Fields:selector: Element selectorexpectedValue: Expected countoperator: Comparison operatorequals: Exact countgreaterThan: More thanlessThan: Fewer thangreaterThanOrEqual: At leastlessThanOrEqual: At most
Advanced Features
Retry Logic
Enable automatic retry for failed verifications.
Retry strategy:
count or untilConditionNumber of retry attempts.
Delay between retries in milliseconds.
Delay strategy:
fixed or exponentialExamples
Basic Verifications
Text Verification
Attribute Verification
Count Verification
With Retry
Resilient Verification
Fail Silently
Optional Verification
Verification Results
Verification results are stored in the context:Common Patterns
Verify After Action
Multiple Verifications
Conditional Workflow
Notes
Verifications with retry enabled will automatically wait and retry until the condition passes or retries are exhausted.
Element visibility checks consider both CSS visibility and whether the element is in the viewport. Use
elementExists to check DOM presence regardless of visibility.Related Nodes
- Verify Text - Text-specific verification
- Get Text - Extract element data
- Wait - Wait for conditions
- JavaScript Code - Custom verification logic
