browser_verify
Verify a condition (text, selector, URL, predicate) in the browser and record pass/fail on the session timeline for time-travel debugging.
Instructions
ASSERT / CHECKPOINT. Verify a condition holds right now and RECORD the pass/fail onto the session timeline (so time-travel and explain can see what you checked and when). Same declarative vocabulary as browser_wait_for: text / selector / url / predicate / network_idle, etc. Returns { passed, details }. Use this to plant explicit checkpoints while driving a flow ("the success banner is visible").
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | ||
| label | No | A human-readable name for this checkpoint. | |
| value | No | Selector, text, URL substring, or JS expression (per type). | |
| timeoutMs | No | How long to wait for the condition (default 2000). |