CLI referenceInteraction
bl click
Click an element (optionally navigate to URL first)
Click an element (optionally navigate to URL first)
Usage
bl click [url] [selector] [flags]Flags
| Flag | Description |
|---|---|
--timeout duration | Timeout for actionability checks (e.g., 5s, 30s) (default 30s) |
Global flags
| Flag | Description |
|---|---|
--headless | Hide browser window (visible by default) |
--json | Output as JSON |
-v, --verbose | Enable debug logging |
Examples
bl click "a"
# Clicks on current page
bl click https://example.com "a"
# Navigates to URL first, then clicks
bl click https://example.com "a" --timeout 5s
# Custom timeout for actionability checks