Expose Dev Tools Protocol Request
data class ExposeDevToolsProtocolRequest(targetId: TargetID, bindingName: String?)
Content copied to clipboard
Represents request frame that can be used with Target#exposeDevToolsProtocol operation call.
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 follwing API:
binding.send(json)
- a method to send messages over the remote debugging protocolbinding.onmessage = json => handleMessage(json)
- a callback that will be called for the protocol notifications and command responses.
See also
Constructors
ExposeDevToolsProtocolRequest
Link copied to clipboard
fun ExposeDevToolsProtocolRequest(targetId: TargetID, bindingName: String? = null)
Content copied to clipboard
Properties
Sources
jvm source
Link copied to clipboard