CLI referenceInteraction
bl type
Type text into an element (optionally navigate to URL first)
Type text into an element (optionally navigate to URL first)
Usage
bl type [url] [selector] [text] [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 type "input" "12345"
# Types on current page
bl type https://the-internet.herokuapp.com/inputs "input" "12345"
# Navigates to URL first, then types
bl type https://the-internet.herokuapp.com/inputs "input" "12345" --timeout 5s
# Custom timeout for actionability checks