web_navigate¶
Navigate the browser to a URL, or go back/forward in browser history. Use action GOTO (default) with a url to navigate to a new page. Use action BACK or FORWARD to move through browser history. A relative file path (e.g., ‘fixtures/index.html’) resolves against the trail file’s own directory first, and only falls back to the process working directory when nothing is there.
Source¶
- Kind: class-backed
- Class:
xyz.block.trailblaze.playwright.tools.PlaywrightNativeNavigateTool
Contract¶
- Visible to LLM: yes (
surface_to_llm: true) - Recordable: yes (
is_recordable: true) - Host-only: no (
requires_host: false)
Input schema¶
Optional parameters¶
action—ToolParameterType.Enum( entries = [GOTO, BACK, FORWARD] )GOTO navigates to a URL, BACK/FORWARD moves through browser history.url—StringThe URL to navigate to. Required when action is GOTO. Supports full URLs (https://…, file://…) or a relative file path, which is resolved against the trail file’s own directory before the process working directory.reasoning—String
Output¶
Returns: string (opaque text content)
Typed result schemas (kind: query | action, MCP structuredContent) are not yet carried by the resolved manifest — this section will gain detail when that lands.