puppeteer/docs/api/puppeteer.connection.send.md

75 lines
830 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Connection.send
---
# Connection.send() method
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Connection {
send<T extends keyof ProtocolMapping.Commands>(
method: T,
params?: ProtocolMapping.Commands[T]['paramsType'][0],
options?: CommandOptions
2022-07-05 13:41:43 +00:00
): Promise<ProtocolMapping.Commands[T]['returnType']>;
}
```
## Parameters
<table><thead><tr><th>
2022-07-05 13:41:43 +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&lt;ProtocolMapping.Commands\[T\]\['returnType'\]&gt;