browser_clipboard_paste
Browser Clipboard Paste
Paste the current clipboard text into the currently focused input, textarea, or contenteditable element on the page. Click the target field first to focus it, then paste. Fires a real paste event and updates framework-controlled inputs (React/Vue).
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.clipboard_paste(
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>
}