DocsIPC Testingipc_tests_run

ipc_tests_run

ipc_tests_run

Start a new IPC test run to validate browser IPC communication. Supports multiple test modes: 'smoke' for quick validation (5 tests), 'full' for comprehensive testing (138+ methods), 'benchmark' for performance measurement, 'stress' for load testing, 'leak-check' for memory analysis, 'parallel' for concurrent context testing. Returns a run_id to track progress.

When to use ipc_tests_run

Use ipc_tests_run 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 inherits the same undetectable browser fingerprint as the rest of your automation — no separate anti-detect setup required.

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_run(
)

Parameters

Optional

modeenum
smokefullbenchmarkstress+2 more

Test mode to run. Options: 'smoke' (quick validation, 5 tests), 'full' (comprehensive, 138+ tests), 'benchmark' (performance testing), 'stress' (load testing), 'leak-check' (memory leak detection), 'parallel' (concurrent context testing). Default: 'full'

verboseboolean

Enable verbose output during test execution. Default: false

iterationsinteger

Number of iterations for benchmark mode. Default: 1

contextsinteger

Number of browser contexts for stress mode. Default: 10

durationinteger

Duration in seconds for stress and leak-check modes. Default: 60

concurrencyinteger

Number of concurrent threads for parallel mode. Default: 1

Response

Returns a JSON object with the operation result.

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

Frequently Asked Questions

What does ipc_tests_run do?

Start a new IPC test run to validate browser IPC communication. Supports multiple test modes: 'smoke' for quick validation (5 tests), 'full' for comprehensive testing (138+ methods), 'benchmark' for performance measurement, 'stress' for load testing, 'leak-check' for memory analysis, 'parallel' for concurrent context testing. Returns a run_id to track progress. It belongs to Owl Browser's IPC Testing category and is available through the REST API, the Python SDK (browser.ipc_tests_run()), the Node.js SDK, and the MCP server.

What parameters does ipc_tests_run accept?

ipc_tests_run accepts 0 required parameters and 6 optional parameters. All parameters are sent as JSON in a POST request to /api/execute/ipc_tests_run.

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

No. ipc_tests_run 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.