Version: Next
CDPSession
- extends: EventEmitter
The CDPSession
instances are used to talk raw Chrome Devtools Protocol:
- protocol methods can be called with
session.send
method. - protocol events can be subscribed to with
session.on
method.
Useful links:
- Documentation on DevTools Protocol can be found here: DevTools Protocol Viewer.
- Getting Started with DevTools Protocol: https://github.com/aslushnikov/getting-started-with-cdp/blob/master/README.md
- Sync
- Async
#
cdp_session.detach()Detaches the CDPSession from the target. Once detached, the CDPSession object won't emit any events and can't be used to send messages.