DocsIPC Testingipc_tests_status

ipc_tests_status

Ipc Tests Status

Get the status of an IPC test run. Returns status (running/completed/failed/aborted), test results summary (total/passed/failed), duration, and commands per second. If run_id is not provided, returns status of the current or last run.

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

Parameters

Optional

run_idstring

The unique run ID to query. If not provided, returns status of current/last run.

Response

Returns a JSON object with the operation result.

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