UNPKG

puppeteer-core

Version:

A high-level API to control headless Chrome over the DevTools Protocol

68 lines 2.1 kB
import { EventEmitter } from '../common/EventEmitter.js'; /** * Events that the CDPSession class emits. * * @public */ // eslint-disable-next-line @typescript-eslint/no-namespace export var CDPSessionEvent; (function (CDPSessionEvent) { /** @internal */ CDPSessionEvent.Disconnected = Symbol('CDPSession.Disconnected'); /** @internal */ CDPSessionEvent.Swapped = Symbol('CDPSession.Swapped'); /** * Emitted when the session is ready to be configured during the auto-attach * process. Right after the event is handled, the session will be resumed. * * @internal */ CDPSessionEvent.Ready = Symbol('CDPSession.Ready'); CDPSessionEvent.SessionAttached = 'sessionattached'; CDPSessionEvent.SessionDetached = 'sessiondetached'; })(CDPSessionEvent || (CDPSessionEvent = {})); /** * The `CDPSession` instances are used to talk raw Chrome Devtools Protocol. * * @remarks * * Protocol methods can be called with {@link CDPSession.send} method and protocol * events can be subscribed to with `CDPSession.on` method. * * Useful links: {@link https://chromedevtools.github.io/devtools-protocol/ | DevTools Protocol Viewer} * and {@link https://github.com/aslushnikov/getting-started-with-cdp/blob/HEAD/README.md | Getting Started with DevTools Protocol}. * * @example * * ```ts * const client = await page.createCDPSession(); * await client.send('Animation.enable'); * client.on('Animation.animationCreated', () => * console.log('Animation created!'), * ); * const response = await client.send('Animation.getPlaybackRate'); * console.log('playback rate is ' + response.playbackRate); * await client.send('Animation.setPlaybackRate', { * playbackRate: response.playbackRate / 2, * }); * ``` * * @public */ export class CDPSession extends EventEmitter { /** * @internal */ constructor() { super(); } /** * Parent session in terms of CDP's auto-attach mechanism. * * @internal */ parentSession() { return undefined; } } //# sourceMappingURL=CDPSession.js.map