DocsIPC Testingipc_tests_list_reports

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.

When to use ipc_tests_list_reports

Use ipc_tests_list_reports when you need to automate a browser task. It is part of Owl Browser's IPC Testing toolset and runs inside a self-hosted, source-level stealth engine, so every call uses the same configured fingerprint controls as the rest of your automation. Detection still depends on the site, network, behavior, and profile consistency.

Usage Example

12345678910
import asyncio
from owl_browser import OwlBrowser, RemoteConfig
# Async usage
async with OwlBrowser(config) as browser:
context_id = await browser.create_context()
await browser.ipc_tests_list_reports(
)

Response

Returns a JSON object with the operation result.

{
  "success": true,
  "result": <value>
}

Frequently Asked Questions

What does ipc_tests_list_reports do?

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. It belongs to Owl Browser's IPC Testing category and is available through the REST API, the Python SDK (browser.ipc_tests_list_reports()), the Node.js SDK, and the MCP server.

What parameters does ipc_tests_list_reports accept?

ipc_tests_list_reports takes no required parameters beyond an active context. Call it with a POST request to /api/execute/ipc_tests_list_reports.

Is ipc_tests_list_reports detectable by anti-bot systems like Cloudflare or DataDome?

No. ipc_tests_list_reports executes inside Owl Browser's Chromium engine, which applies fingerprint spoofing at the C++ source level rather than through JavaScript patches. Every tool call shares the same consistent, human-like fingerprint, so anti-bot systems such as Cloudflare, DataDome, and Akamai see an ordinary browser.

Related Tools

Browse the full Owl Browser API reference or get started with the Python SDK and Node.js SDK.