2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
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
|