puppeteer/new-docs/puppeteer.cdpsession.send.md
Jack Franklin 31309b0e20
chore: use devtools-protocol package (#6172)
* chore: Use devtools-protocol package

Rather than maintain our own protocol we can instead use the devtools-protocol package and pin it to the version of Chromium that Puppeteer is shipping with.

The only changes are naming changes between the bespoke protocol that Puppeteer created and the devtools-protocol one.
2020-07-10 11:51:52 +01:00

719 B

Home > puppeteer > CDPSession > send

CDPSession.send() method

Signature:

send<T extends keyof ProtocolMapping.Commands>(method: T, ...paramArgs: ProtocolMapping.Commands[T]['paramsType']): Promise<ProtocolMapping.Commands[T]['returnType']>;

Parameters

Parameter Type Description
method T
paramArgs ProtocolMapping.Commands[T]['paramsType']

Returns:

Promise<ProtocolMapping.Commands[T]['returnType']>