ipc_tests_get_report
Ipc Tests Get Report
Get a specific IPC test report by run_id. Returns JSON data, HTML dashboard, or raw log output depending on the format parameter. JSON includes detailed test results, latency stats, resource usage, and failure details. HTML is an interactive dashboard with charts. Log returns the test client's stdout/stderr output for debugging failures.
Usage Example
1234567891011
import asyncio
from owl_browser import OwlBrowser, RemoteConfig
# Async usage
async with OwlBrowser(config) as browser:
context = await browser.create_context()
context_id = context["context_id"]
await browser.ipc_tests_get_report(
run_id="value"
)
Parameters
Required
run_idstringrequiredThe unique run ID of the report to retrieve.
Optional
formatenumjsonhtmllogReport format to return. Options: 'json' (raw test data), 'html' (interactive dashboard), 'log' (test client stdout/stderr output). Default: 'json'
Response
Returns a JSON object with the operation result.
{
"success": true,
"result": <value>
}