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

47 lines
457 B
Markdown
Raw Permalink 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
<table><thead><tr><th>
2022-07-05 13:41:43 +00:00
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
options
</td><td>
&#123; runBeforeUnload?: boolean; &#125;
</td><td>
_(Optional)_
</td></tr>
</tbody></table>
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;void&gt;