puppeteer/docs/api/puppeteer.cdpsession.send.md

28 lines
711 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: CDPSession.send
---
# CDPSession.send() method
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class CDPSession {
abstract send<T extends keyof ProtocolMapping.Commands>(
2022-07-05 13:41:43 +00:00
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&lt;ProtocolMapping.Commands\[T\]\['returnType'\]&gt;