mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
408 B
Markdown
24 lines
408 B
Markdown
---
|
|
sidebar_label: Page.close
|
|
---
|
|
|
|
# Page.close() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Page {
|
|
close(options?: {runBeforeUnload?: boolean}): Promise<void>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ------------------------------ | ------------ |
|
|
| options | { runBeforeUnload?: boolean; } | _(Optional)_ |
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|