puppeteer/docs/api/puppeteer.page.emulatevisiondeficiency.md

74 lines
1.2 KiB
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Page.emulateVisionDeficiency
---
# Page.emulateVisionDeficiency() method
Simulates the given vision deficiency on the page.
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Page {
abstract emulateVisionDeficiency(
2022-07-05 13:41:43 +00:00
type?: Protocol.Emulation.SetEmulatedVisionDeficiencyRequest['type']
): Promise<void>;
}
```
## 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>
type
</td><td>
Protocol.Emulation.SetEmulatedVisionDeficiencyRequest\['type'\]
</td><td>
_(Optional)_ the type of deficiency to simulate, or `'none'` to reset.
</td></tr>
</tbody></table>
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;void&gt;
## Example
```ts
import puppeteer from 'puppeteer';
2022-07-05 13:41:43 +00:00
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://v8.dev/blog/10-years');
await page.emulateVisionDeficiency('achromatopsia');
await page.screenshot({path: 'achromatopsia.png'});
await page.emulateVisionDeficiency('deuteranopia');
await page.screenshot({path: 'deuteranopia.png'});
await page.emulateVisionDeficiency('blurredVision');
await page.screenshot({path: 'blurred-vision.png'});
await browser.close();
})();
```