2022-08-06 14:49:20 +00:00
---
sidebar_label: Page.emulateVisionDeficiency
---
# Page.emulateVisionDeficiency() method
Simulates the given vision deficiency on the page.
2022-10-24 14:31:12 +00:00
#### Signature:
2022-08-06 14:49:20 +00:00
```typescript
class Page {
emulateVisionDeficiency(
type?: Protocol.Emulation.SetEmulatedVisionDeficiencyRequest['type']
): Promise< void > ;
}
```
## Parameters
2023-03-06 13:53:56 +00:00
| Parameter | Type | Description |
| --------- | --------------------------------------------------------------- | --------------------------------------------------------------------------------- |
| type | Protocol.Emulation.SetEmulatedVisionDeficiencyRequest\['type'\] | _(Optional)_ the type of deficiency to simulate, or < code > 'none'</ code > to reset. |
2022-08-06 14:49:20 +00:00
**Returns:**
Promise< void>
## Example
```ts
2022-12-16 13:21:28 +00:00
import puppeteer from 'puppeteer';
2022-08-06 14:49:20 +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();
})();
```