exposeDevToolsProtocol

suspend fun exposeDevToolsProtocol(args: Target.ExposeDevToolsProtocolParameter, mode: CommandMode = CommandMode.DEFAULT)

Inject object to the target's main frame that provides a communication channel with browser target.

Injected object will be available as window[bindingName].

The object has the following API:

  • binding.send(json) - a method to send messages over the remote debugging protocol

  • binding.onmessage = json => handleMessage(json) - a callback that will be called for the protocol notifications and command responses.


suspend fun exposeDevToolsProtocol(targetId: String, bindingName: String? = null, inheritPermissions: Boolean? = null)

Inject object to the target's main frame that provides a communication channel with browser target.

Injected object will be available as window[bindingName].

The object has the following API:

  • binding.send(json) - a method to send messages over the remote debugging protocol

  • binding.onmessage = json => handleMessage(json) - a callback that will be called for the protocol notifications and command responses.

Parameters

targetId

No description

bindingName

Binding name, 'cdp' if not specified.

inheritPermissions

If true, inherits the current root session's permissions (default: false).