2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Target.createCDPSession
|
|
|
|
---
|
|
|
|
|
|
|
|
# Target.createCDPSession() method
|
|
|
|
|
|
|
|
Creates a Chrome Devtools Protocol session attached to the target.
|
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Target {
|
|
|
|
createCDPSession(): Promise<CDPSession>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<[CDPSession](./puppeteer.cdpsession.md)>
|