mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
22 lines
393 B
Markdown
22 lines
393 B
Markdown
|
---
|
||
|
sidebar_label: Browser.process
|
||
|
---
|
||
|
|
||
|
# Browser.process() method
|
||
|
|
||
|
Gets the associated [ChildProcess](https://nodejs.org/api/child_process.html#class-childprocess).
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Browser {
|
||
|
process(): ChildProcess | null;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
ChildProcess \| null
|
||
|
|
||
|
`null` if this instance was connected to via [Puppeteer.connect()](./puppeteer.puppeteer.connect.md).
|