2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Connection.send
|
|
|
|
---
|
|
|
|
|
|
|
|
# Connection.send() method
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Connection {
|
|
|
|
send<T extends keyof ProtocolMapping.Commands>(
|
|
|
|
method: T,
|
2024-01-02 10:00:07 +00:00
|
|
|
params?: ProtocolMapping.Commands[T]['paramsType'][0],
|
|
|
|
options?: CommandOptions
|
2022-07-05 13:41:43 +00:00
|
|
|
): Promise<ProtocolMapping.Commands[T]['returnType']>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
<table><thead><tr><th>
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2024-03-20 15:03:14 +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>
|
2022-07-05 13:41:43 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<ProtocolMapping.Commands\[T\]\['returnType'\]>
|