WebDriver Bidi Protocol
These protocol commands are generated based on the current living WebDriver Bidi specification.
Browser support is not guaranteed and interfaces can change in the future. The standard is currently under development and browser vendors will add these capabilities based on their own timelines.
Last Updated: Tue Sep 19 2023 17:28:42 GMT+0000 (Coordinated Universal Time)
send
Send socket commands via WebDriver Bidi
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.send(params)
Parameters
Name | Type | Details |
---|---|---|
params | CommandData | socket payload |
Returns
- <Object>
CommandResponse
: WebDriver Bidi response
sendAsync
Send asynchronous socket commands via WebDriver Bidi
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.sendAsync(params)
Parameters
Name | Type | Details |
---|---|---|
params | CommandData | socket payload |
Returns
- <Number>
id
: id of WebDriver Bidi request
sessionStatus
WebDriver Bidi command to send command method "session.status" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.sessionStatus(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.EmptyParams |
|
Returns
- <Object>
local.SessionStatusResult
: Command return value with the following interface:{
ready: boolean;
message: string;
}
sessionNew
WebDriver Bidi command to send command method "session.new" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.sessionNew(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.SessionNewParameters |
|
Returns
- <Object>
local.SessionNewResult
: Command return value with the following interface:{
sessionId: string;
capabilities: {
acceptInsecureCerts: boolean;
browserName: string;
browserVersion: string;
platformName: string;
proxy: {
proxyType?: "pac" | "direct" | "autodetect" | "system" | "manual";
proxyAutoconfigUrl?: string;
ftpProxy?: string;
httpProxy?: string;
noProxy?: string[];
sslProxy?: string;
socksProxy?: string;
socksVersion?: number;
};
setWindowRect: boolean;
};
}
sessionEnd
WebDriver Bidi command to send command method "session.end" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.sessionEnd(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.EmptyParams |
|
sessionSubscribe
WebDriver Bidi command to send command method "session.subscribe" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.sessionSubscribe(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.SessionSubscriptionRequest |
|
sessionUnsubscribe
WebDriver Bidi command to send command method "session.unsubscribe" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.sessionUnsubscribe(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.SessionSubscriptionRequest |
|
browserClose
WebDriver Bidi command to send command method "browser.close" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.browserClose(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.EmptyParams |
|
browsingContextCaptureScreenshot
WebDriver Bidi command to send command method "browsingContext.captureScreenshot" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.browsingContextCaptureScreenshot(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.BrowsingContextCaptureScreenshotParameters |
|
Returns
- <Object>
local.BrowsingContextCaptureScreenshotResult
: Command return value with the following interface:{
data: string;
}
browsingContextClose
WebDriver Bidi command to send command method "browsingContext.close" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.browsingContextClose(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.BrowsingContextCloseParameters |
|
browsingContextCreate
WebDriver Bidi command to send command method "browsingContext.create" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.browsingContextCreate(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.BrowsingContextCreateParameters |
|
Returns
- <Object>
local.BrowsingContextCreateResult
: Command return value with the following interface:{
context: BrowsingContextBrowsingContext;
}
browsingContextGetTree
WebDriver Bidi command to send command method "browsingContext.getTree" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.browsingContextGetTree(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.BrowsingContextGetTreeParameters |
|
Returns
- <Object>
local.BrowsingContextGetTreeResult
: Command return value with the following interface:{
contexts: BrowsingContextInfoList;
}
browsingContextHandleUserPrompt
WebDriver Bidi command to send command method "browsingContext.handleUserPrompt" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.browsingContextHandleUserPrompt(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.BrowsingContextHandleUserPromptParameters |
|
browsingContextNavigate
WebDriver Bidi command to send command method "browsingContext.navigate" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.browsingContextNavigate(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.BrowsingContextNavigateParameters |
|
Returns
- <Object>
local.BrowsingContextNavigateResult
: Command return value with the following interface:{
navigation: BrowsingContextNavigation | null;
url: string;
}
browsingContextPrint
WebDriver Bidi command to send command method "browsingContext.print" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.browsingContextPrint(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.BrowsingContextPrintParameters |
|
Returns
- <Object>
local.BrowsingContextPrintResult
: Command return value with the following interface:{
data: string;
}
browsingContextReload
WebDriver Bidi command to send command method "browsingContext.reload" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.browsingContextReload(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.BrowsingContextReloadParameters |
|
scriptAddPreloadScriptCommand
WebDriver Bidi command to send command method "script.addPreloadScript" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.scriptAddPreloadScriptCommand(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.ScriptAddPreloadScriptParameters |
|
scriptDisown
WebDriver Bidi command to send command method "script.disown" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.scriptDisown(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.ScriptDisownParameters |
|
scriptCallFunction
WebDriver Bidi command to send command method "script.callFunction" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.scriptCallFunction(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.ScriptCallFunctionParameters |
|
scriptEvaluate
WebDriver Bidi command to send command method "script.evaluate" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.scriptEvaluate(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.ScriptEvaluateParameters |
|
Returns
- <Object>
local.ScriptEvaluateResult
: Command return value with the following interface:;
scriptGetRealms
WebDriver Bidi command to send command method "script.getRealms" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.scriptGetRealms(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.ScriptGetRealmsParameters |
|
Returns
- <Object>
local.ScriptGetRealmsResult
: Command return value with the following interface:{
realms: ScriptRealmInfo[];
}
scriptRemovePreloadScriptCommand
WebDriver Bidi command to send command method "script.removePreloadScript" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.scriptRemovePreloadScriptCommand(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.ScriptRemovePreloadScriptParameters |
|
inputPerformActions
WebDriver Bidi command to send command method "input.performActions" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.inputPerformActions(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.InputPerformActionsParameters |
|
inputReleaseActions
WebDriver Bidi command to send command method "input.releaseActions" with parameters.
WebDriver Bidi Protocol command. More details can be found in the official protocol docs.
Usage
browser.inputReleaseActions(params)
Parameters
Name | Type | Details |
---|---|---|
params | remote.InputReleaseActionsParameters |
|