ipc_tests_delete_report
Ipc Tests Delete Report
Delete an IPC test report by run_id. Removes JSON, HTML, and log files from disk. Use to clean up old test results.
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_delete_report(
run_id="value"
)
Parameters
Required
run_idstringrequiredThe unique run ID of the report to delete.
Response
Returns a JSON object with the operation result.
{
"success": true,
"result": <value>
}