mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
3b09e956c6
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
24 lines
499 B
Markdown
24 lines
499 B
Markdown
---
|
|
sidebar_label: Connection.fromSession
|
|
---
|
|
|
|
# Connection.fromSession() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Connection {
|
|
static fromSession(session: CDPSession): Connection | undefined;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | --------------------------------------- | ----------- |
|
|
| session | [CDPSession](./puppeteer.cdpsession.md) | |
|
|
|
|
**Returns:**
|
|
|
|
[Connection](./puppeteer.connection.md) \| undefined
|