get_network_errors
Retrieve network error logs to identify and troubleshoot connectivity issues during browser automation and web testing on ARM64 devices.
Instructions
Get network error logs
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:255-262 (registration)Tool registration in ListToolsRequestSchema handler, defining name, description, and empty input schema.{ name: 'get_network_errors', description: 'Get network error logs', inputSchema: { type: 'object', properties: {}, }, },
- index.js:795-799 (handler)Handler function that returns the stored networkErrors array as formatted JSON.async getNetworkErrors() { return { content: [{ type: 'text', text: JSON.stringify(networkErrors, null, 2) }], }; }
- index.js:373-374 (handler)Dispatch case in CallToolRequestSchema handler that invokes the getNetworkErrors method.case 'get_network_errors': return await this.getNetworkErrors();