Browser.executeBrowserCommandInvoke custom browser commands used by telemetry.
| Name | Type | Description |
|---|---|---|
commandId | BrowserCommandId |
{
"id": 1,
"method": "Browser.executeBrowserCommand",
"params": {
"commandId": "commandId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Browser.executeBrowserCommand', {"commandId": "commandId-value"});
console.log(result);