6847f8835f
The only drawback of adding overrides is that our documentation generator would generate a page for each overload which might be hard to read/find on the documentation website. Closes #9512 #9385
24 lines
522 B
Markdown
24 lines
522 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) | <i>(Optional)</i> |
|
|
|
|
**Returns:**
|
|
|
|
Promise<Buffer \| string>
|