2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: BrowserContext.close
|
|
|
|
---
|
|
|
|
|
|
|
|
# BrowserContext.close() method
|
|
|
|
|
2023-09-18 18:11:55 +00:00
|
|
|
Closes this [browser context](./puppeteer.browsercontext.md) and all associated [pages](./puppeteer.page.md).
|
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 BrowserContext {
|
2023-09-18 18:11:55 +00:00
|
|
|
abstract close(): Promise<void>;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
2023-09-18 18:11:55 +00:00
|
|
|
The [default browser context](./puppeteer.browser.defaultbrowsercontext.md) cannot be closed.
|