mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
26 lines
415 B
Markdown
26 lines
415 B
Markdown
---
|
|
sidebar_label: Connection.session
|
|
---
|
|
|
|
# Connection.session() method
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
class Connection {
|
|
session(sessionId: string): CDPSession | null;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ------ | -------------- |
|
|
| sessionId | string | The session id |
|
|
|
|
**Returns:**
|
|
|
|
[CDPSession](./puppeteer.cdpsession.md) \| null
|
|
|
|
The current CDP session if it exists
|