puppeteer/docs/api/puppeteer.page.viewport.md
jrandolf f07ad2c661
fix: update documentation on configuring puppeteer (#9150)
This PR updates the docs regarding configuring puppeteer. In addition,
some changes have been made to the documentation generator to show
default values on the documentation site.

Also fixes: https://github.com/puppeteer/puppeteer/pull/9144
2022-10-24 09:07:05 +02:00

30 lines
626 B
Markdown

---
sidebar_label: Page.viewport
---
# Page.viewport() method
#### Signature:
```typescript
class Page {
viewport(): Viewport | null;
}
```
**Returns:**
[Viewport](./puppeteer.viewport.md) \| null
- `width`: page's width in pixels
- `height`: page's height in pixels
- `deviceScalarFactor`: Specify device scale factor (can be though of as dpr). Defaults to `1`.
- `isMobile`: Whether the meta viewport tag is taken into account. Defaults to `false`.
- `hasTouch`: Specifies if viewport supports touch events. Defaults to `false`.
- `isLandScape`: Specifies if viewport is in landscape mode. Defaults to `false`.