Skip to content

Commit

Permalink
docs: fix broken link to DeviceDescriptors.ts (#6076)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gared committed Jun 23, 2020
1 parent 6657364 commit 2090676
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/api.md
Expand Up @@ -498,7 +498,7 @@ The default flags that Chromium will be launched with.
- returns: <[Object]>

Returns a list of devices to be used with [`page.emulate(options)`](#pageemulateoptions). Actual list of
devices can be found in [src/DeviceDescriptors.js](https://github.com/puppeteer/puppeteer/blob/main/src/DeviceDescriptors.ts).
devices can be found in [src/common/DeviceDescriptors.js](https://github.com/puppeteer/puppeteer/blob/main/src/common/DeviceDescriptors.ts).

```js
const puppeteer = require('puppeteer');
Expand Down Expand Up @@ -1332,7 +1332,7 @@ const iPhone = puppeteer.devices['iPhone 6'];
})();
```

List of all available devices is available in the source code: [src/DeviceDescriptors.ts](https://github.com/puppeteer/puppeteer/blob/main/src/DeviceDescriptors.ts).
List of all available devices is available in the source code: [src/common/DeviceDescriptors.ts](https://github.com/puppeteer/puppeteer/blob/main/src/common/DeviceDescriptors.ts).

#### page.emulateMedia(type)
- `type` <?[string]> Changes the CSS media type of the page. The only allowed values are `'screen'`, `'print'` and `null`. Passing `null` disables CSS media emulation.
Expand Down

0 comments on commit 2090676

Please sign in to comment.