mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
93e9acc410
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
75 lines
830 B
Markdown
75 lines
830 B
Markdown
---
|
|
sidebar_label: Connection.send
|
|
---
|
|
|
|
# Connection.send() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Connection {
|
|
send<T extends keyof ProtocolMapping.Commands>(
|
|
method: T,
|
|
params?: ProtocolMapping.Commands[T]['paramsType'][0],
|
|
options?: CommandOptions
|
|
): Promise<ProtocolMapping.Commands[T]['returnType']>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
<table><thead><tr><th>
|
|
|
|
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>
|
|
**Returns:**
|
|
|
|
Promise<ProtocolMapping.Commands\[T\]\['returnType'\]>
|