2024-01-04 13:39:46 +00:00
|
|
|
---
|
|
|
|
sidebar_label: CDPSession.send
|
|
|
|
---
|
|
|
|
|
|
|
|
# CDPSession.send() method
|
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class CDPSession {
|
|
|
|
abstract send<T extends keyof ProtocolMapping.Commands>(
|
|
|
|
method: T,
|
|
|
|
params?: ProtocolMapping.Commands[T]['paramsType'][0],
|
|
|
|
options?: CommandOptions
|
|
|
|
): Promise<ProtocolMapping.Commands[T]['returnType']>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
<table><thead><tr><th>
|
2024-01-04 13:39:46 +00:00
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
method
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
T
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
<tr><td>
|
|
|
|
|
|
|
|
params
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
ProtocolMapping.Commands\[T\]\['paramsType'\]\[0\]
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
_(Optional)_
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
<tr><td>
|
|
|
|
|
|
|
|
options
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
[CommandOptions](./puppeteer.commandoptions.md)
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
_(Optional)_
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2024-01-04 13:39:46 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<ProtocolMapping.Commands\[T\]\['returnType'\]>
|