puppeteer/docs/api/puppeteer.page.close.md

24 lines
447 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Page.close
---
# Page.close() method
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Page {
2023-09-21 09:09:27 +00:00
abstract close(options?: {runBeforeUnload?: boolean}): Promise<void>;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ---------------------------------------- | ------------ |
| options | &#123; runBeforeUnload?: boolean; &#125; | _(Optional)_ |
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;void&gt;