mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
df4d60c187
Co-authored-by: Nikolay Vitkov <34244704+Lightning00Blade@users.noreply.github.com>
20 lines
374 B
Markdown
20 lines
374 B
Markdown
---
|
|
sidebar_label: Browser.disconnect
|
|
---
|
|
|
|
# Browser.disconnect() method
|
|
|
|
Disconnects Puppeteer from the browser, but leaves the browser process running. After calling `disconnect`, the [Browser](./puppeteer.browser.md) object is considered disposed and cannot be used anymore.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Browser {
|
|
disconnect(): void;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
void
|