Files
Zach Kelling f152d44403 docs: improve DX with navigation and cross-references
- Update docs/mcp/tools/ placeholders with quick refs and links
- Create docs/ref/tools/index.md with full package table
- Create docs/ref/agent/index.md with topic links
- Create docs/ref/mcp/index.md with tool categories
- Create docs/tools/index.md as main entry point
- Add consistent cross-references between sections
2026-01-05 17:45:00 -08:00

607 B

Browser Tool

Complete Playwright automation with 70+ actions.

Full documentation: ../../tools/browser.md

Quick Reference

# Navigate
browser(action="navigate", url="https://example.com")

# Click element
browser(action="click", selector="button.submit")

# Fill form
browser(action="fill", selector="input[name=email]", text="user@example.com")

# Screenshot
browser(action="screenshot", full_page=True)

# Device emulation
browser(action="emulate", device="mobile")

Supports: navigation, forms, mouse, touch, assertions, storage, network, and more.