browser_extract_site_progress
Browser Extract Site Progress
Get progress of a site extraction job. Returns pages_completed, pages_total, current_url, and status. Status can be: 'running', 'completed', 'cancelled', or 'error'.
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.extract_site_progress(
job_id="value"
)
Parameters
Required
job_idstringrequiredThe job ID returned from browser_extract_site
Response
Returns a JSON object with the operation result.
{
"success": true,
"result": <value>
}