mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
498 B
Markdown
24 lines
498 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
|