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. Relative file paths (e.g., ‘sample-app/index.html’) are resolved from the working directory.
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 relative file paths.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.