get_trace_data
Retrieve function call trace data for debugging JavaScript reverse engineering in the Camoufox anti-detection browser environment. Filter by specific functions or get all traces, with options to clear data after retrieval.
Instructions
Retrieve trace data collected by trace_function.
Args: function_path: If specified, return traces only for this function. If omitted, return all traces. clear: If True, clear the trace data after retrieval. include_persistent: Include trace data collected across navigations (stored Python-side). Default True.
Returns: dict mapping function paths to lists of call records (args, return_value, stack, timestamp).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| function_path | No | ||
| clear | No | ||
| include_persistent | No |