2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Connection.session
|
|
|
|
---
|
|
|
|
|
|
|
|
# Connection.session() method
|
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Connection {
|
|
|
|
session(sessionId: string): CDPSession | null;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
<table><thead><tr><th>
|
2022-08-06 14:49:20 +00:00
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
sessionId
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
string
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
The session id
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2022-08-06 14:49:20 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
[CDPSession](./puppeteer.cdpsession.md) \| null
|
|
|
|
|
|
|
|
The current CDP session if it exists
|