DocsIPC Testingipc_tests_clean_all

ipc_tests_clean_all

Ipc Tests Clean All

Delete all IPC test reports. Removes all JSON, HTML, and log files from the reports directory. Use to clean up all test history.

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

Response

Returns a JSON object with the operation result.

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