mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
13f8fe6e16
This commit also removes our own custom type for defining the vision deficiencies and uses the protocol's type. Now we generate docs for those we get the docs generated for free for these. This is better than us duplicating values for types in doc comments and having them become outdated. If we use the protocol types directly then we ensure we're up to date and in-sync. Long term the docs will also link to the devtools-protocol viewer.
50 lines
1.4 KiB
Markdown
50 lines
1.4 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Page](./puppeteer.page.md) > [emulateVisionDeficiency](./puppeteer.page.emulatevisiondeficiency.md)
|
|
|
|
## Page.emulateVisionDeficiency() method
|
|
|
|
Simulates the given vision deficiency on the page.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
emulateVisionDeficiency(type?: Protocol.Emulation.SetEmulatedVisionDeficiencyRequest['type']): Promise<void>;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| type | [Protocol.Emulation.SetEmulatedVisionDeficiencyRequest](./puppeteer.protocol.emulation.setemulatedvisiondeficiencyrequest.md)<!-- -->\['type'\] | the type of deficiency to simulate, or <code>'none'</code> to reset. |
|
|
|
|
<b>Returns:</b>
|
|
|
|
Promise<void>
|
|
|
|
## Example
|
|
|
|
|
|
```js
|
|
const puppeteer = require('puppeteer');
|
|
|
|
(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();
|
|
})();
|
|
|
|
```
|
|
|