ipc_tests_list_reports
Ipc Tests List Reports
List all available IPC test reports. Returns an array of report metadata including run_id, timestamp, mode, test counts, and duration. Reports are stored in the reports directory.
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_list_reports(
)
Response
Returns a JSON object with the operation result.
{
"success": true,
"result": <value>
}