df4d60c187
Co-authored-by: Nikolay Vitkov <34244704+Lightning00Blade@users.noreply.github.com>
20 lines
350 B
Markdown
20 lines
350 B
Markdown
---
|
|
sidebar_label: Browser.close
|
|
---
|
|
|
|
# Browser.close() method
|
|
|
|
Closes the browser and all of its pages (if any were opened). The [Browser](./puppeteer.browser.md) object itself is considered to be disposed and cannot be used anymore.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Browser {
|
|
close(): Promise<void>;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|