2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Browser.process
|
|
|
|
---
|
|
|
|
|
|
|
|
# Browser.process() method
|
|
|
|
|
2023-09-18 09:05:23 +00:00
|
|
|
Gets the associated [ChildProcess](https://nodejs.org/api/child_process.html#class-childprocess).
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Browser {
|
2023-11-09 12:57:33 +00:00
|
|
|
abstract process(): ChildProcess | null;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
ChildProcess \| null
|
2023-09-18 09:05:23 +00:00
|
|
|
|
|
|
|
`null` if this instance was connected to via [Puppeteer.connect()](./puppeteer.puppeteer.connect.md).
|