browser_reload
Reload the current page. Optionally bypass the browser cache for a hard reload that fetches all resources fresh from the server. Useful when testing changes or clearing stale cached content.
Usage Example
Parameters
Required
context_idstringrequiredThe unique identifier of the browser context (e.g., 'ctx_000001')
Optional
ignore_cachebooleanWhen true, performs a hard reload that bypasses the browser cache and fetches all resources from the server. Equivalent to Ctrl+Shift+R. Default: false (normal reload using cache)
wait_untilenumloaddomcontentloadednetworkidle+1 moreWhen to consider reload complete: '' (return immediately), 'load' (wait for load event, default), 'domcontentloaded' (wait for DOMContentLoaded), 'networkidle' (wait for network to be idle), 'fullscroll' (scroll full page to trigger lazy loading, then scroll back to top)
timeoutstringMaximum time to wait for reload in milliseconds. Only used when wait_until is set. Default: 30000 (30 seconds)
Response
Returns a JSON object with the operation result.
{
"success": true,
"result": <value>
}