DocsInput Controlbrowser_blur

browser_blur

Browser Blur

Remove focus from an element. Often triggers validation on form fields. Useful for forcing validation or removing focus from the current element.

Usage Example

123456789101112
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.blur(
context_id=context_id,
selector="#element-id"
)

Parameters

Required

context_idstringrequired

The unique identifier of the browser context (e.g., 'ctx_000001')

selectorstringrequired

CSS selector or natural language description of the element to remove focus from

Response

Returns a JSON object with the operation result.

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