mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
426 B
Markdown
24 lines
426 B
Markdown
---
|
|
sidebar_label: BrowserContext.close
|
|
---
|
|
|
|
# BrowserContext.close() method
|
|
|
|
Closes this [browser context](./puppeteer.browsercontext.md) and all associated [pages](./puppeteer.page.md).
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class BrowserContext {
|
|
abstract close(): Promise<void>;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|
|
|
|
## Remarks
|
|
|
|
The [default browser context](./puppeteer.browser.defaultbrowsercontext.md) cannot be closed.
|