explore
Explore a web page using browser automation
/qa-use:explore
Explore a web page or complete a navigation goal.
Invokes skill: qa-use
Arguments
| Argument | Description |
|---|---|
url | URL to explore (e.g., https://example.com) |
goal | Navigation goal (e.g., "find the pricing page") |
What Happens
- Creates browser session (or uses existing one)
- Navigates to the URL
- Analyzes page using accessibility snapshots
- Reports elements, navigation options, content found
Examples
/qa-use:explore https://example.com
/qa-use:explore "find the pricing page"
/qa-use:explore https://myapp.com/dashboard "find user settings"
Starting After Login
Many pages require authentication. Use --after-test-id when creating the browser session to start from a logged-in state:
# Create session that runs login test first
qa-use browser create --after-test-id <login-test-uuid>
# Then explore the authenticated area
/qa-use:explore https://myapp.com/dashboard
This is extremely useful for:
- Exploring authenticated pages - bypass login walls automatically
- Testing user-specific features - start as a logged-in user
- Complex setup flows - run a setup test, then explore manually
To get test UUIDs, use qa-use test run --list or check your tests in the desplega.ai dashboard.