mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
20 lines
333 B
Markdown
20 lines
333 B
Markdown
|
---
|
||
|
sidebar_label: Browser.process
|
||
|
---
|
||
|
|
||
|
# Browser.process() method
|
||
|
|
||
|
The spawned browser process. Returns `null` if the browser instance was created with [Puppeteer.connect()](./puppeteer.puppeteer.connect.md).
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
class Browser {
|
||
|
process(): ChildProcess | null;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
ChildProcess \| null
|