mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
422 B
Markdown
24 lines
422 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; } | <i>(Optional)</i> |
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|