puppeteer/docs/api/puppeteer.browser.disconnect.md

20 lines
302 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Browser.disconnect
---
# Browser.disconnect() method
2023-09-18 09:05:23 +00:00
Disconnects Puppeteer from this [browser](./puppeteer.browser.md), but leaves the process running.
2022-07-05 13:41:43 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Browser {
abstract disconnect(): Promise<void>;
2022-07-05 13:41:43 +00:00
}
```
**Returns:**
Promise&lt;void&gt;