mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
507 B
Markdown
24 lines
507 B
Markdown
---
|
|
sidebar_label: Page.screenshot_2
|
|
---
|
|
|
|
# Page.screenshot() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Page {
|
|
screenshot(options?: ScreenshotOptions): Promise<Buffer | string>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ----------------------------------------------------- | ------------ |
|
|
| options | [ScreenshotOptions](./puppeteer.screenshotoptions.md) | _(Optional)_ |
|
|
|
|
**Returns:**
|
|
|
|
Promise<Buffer \| string>
|