Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from bundle
Skill for Browser Use CLI local automation, real-browser mode, sessions, cloud/platform flows, and tested command patterns.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/quickstart.md
1# Browser Use CLI Quickstart23## Install45Recommended docs path:6- `curl -fsSL https://browser-use.com/cli/install.sh | bash`78Manual install path:9- `uv pip install browser-use`10- `browser-use install`11- `browser-use doctor`1213In this environment, `uv tool install browser-use` also worked.1415## Short local workflow1617```bash18browser-use open https://example.com19browser-use state20browser-use click 521browser-use input 3 "[email protected]"22browser-use screenshot output.png23browser-use close24```2526## Useful modes2728### Local Chromium2930```bash31browser-use open https://example.com32```3334### Headed3536```bash37browser-use --headed open https://example.com38```3940### Real browser4142```bash43browser-use --browser real --profile "Default" open https://example.com44```4546### Named session4748```bash49browser-use --session work open https://example.com50browser-use --session work state51browser-use --session work close52```5354## Useful commands5556```bash57browser-use state58browser-use get title59browser-use get html60browser-use eval "document.title"61browser-use wait text "Success"62browser-use screenshot page.png63browser-use close --all64```6566## Interaction model6768`state` returns indexed elements.69Use those indices in later commands like `click`, `input`, `hover`, or `select`.7071Re-run `state` after the page changes.72