browser_detect_site
Browser Detect Site
Identify the type of website currently loaded (e.g., 'google_search', 'wikipedia', 'amazon_product'). Use before browser_extract_json to determine which template to apply, or for conditional page handling logic.
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.detect_site(
context_id=context_id
)
Parameters
Required
context_idstringrequiredThe unique identifier of the browser context (e.g., 'ctx_000001')
Response
Returns a JSON object with the operation result.
{
"success": true,
"result": <value>
}