start_network_capture
Initiate network traffic capture for specified URL patterns to analyze requests, responses, headers, and timing data during JavaScript reverse engineering.
Instructions
Start capturing network requests matching the given URL pattern.
Captured data includes URL, method, headers, body, status, response headers, resource type, timing, etc. Use list_network_requests to view captures.
Args: url_pattern: Glob pattern to filter captured URLs (default "**/*" captures all). capture_body: If True, also capture response bodies. This increases memory usage but allows inspecting actual response data. Default False.
Returns: dict with status and the active capture pattern.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url_pattern | No | **/* | |
| capture_body | No |