Logic & Loop Nodes
Use control-flow nodes to decide branch paths, repeat steps safely, and control timing.
Node List
| Node | Required Parameters | Main Output |
|---|---|---|
| Conditional Stop | Node condition config | Continue or stop run |
| Loop While (AI) | Loop condition config | Loop branch decision |
| Loop End | Loop closure config | Next iteration or exit |
| Delay | Web page, Duration (seconds) | Timed pause |
| Random Delay | Web page, Min Duration, Max Duration | Timed random pause |
| Stop Schedule | Web page, Active Job | Schedule disabled |
Input / Output Example
- Input chain:
Loop While (AI) -> Extraction block -> Loop End - Output behavior: workflow repeats until loop condition evaluates false, then exits to next downstream path.
Common Errors
- Infinite loop behavior due to weak loop exit condition.
- Missing or invalid active schedule context in
Stop Schedule. - Delays set too short for dynamic pages to stabilize.
Retry Tips
- Add clear loop exit criteria tied to extracted values.
- Use
Random Delayfor human-like timing between repeated interactions. - Combine condition checks with
Wait for Elementto reduce false failures inside loops.
Always validate loop termination logic on small test runs before production schedules.
Last updated on