DocsLicense Managementbrowser_remove_license

browser_remove_license

Browser Remove License

Remove the currently installed license. The browser reverts to unlicensed/trial mode. Use before installing a new license or to deactivate the browser on this machine.

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.remove_license(
)

Response

Returns a JSON object with the operation result.

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