send_cdp_command
Send raw Chrome DevTools Protocol commands to debug browsers when specialized tools are insufficient. Requires CDP knowledge for advanced automation.
Instructions
EXPERIMENTAL: Send a raw CDP command to the browser. Use ONLY if existing specialized tools (like navigate, click_element, etc.) do not satisfy your needs. Requires knowledge of the Chrome DevTools Protocol (CDP).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | A JSON string representing the parameters for the CDP command (e.g., '{"url": "https://example.com"}'). Omit or provide '{}' if no parameters are needed. | |
| method | Yes | The CDP method name (e.g., 'DOM.getDocument'). |