puppeteer/new-docs/puppeteer.puppeteer.devices.md

34 lines
708 B
Markdown
Raw Normal View History

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Puppeteer](./puppeteer.puppeteer.md) &gt; [devices](./puppeteer.puppeteer.devices.md)
## Puppeteer.devices property
<b>Signature:</b>
```typescript
get devices(): DevicesMap;
```
## Remarks
## Example
```js
const puppeteer = require('puppeteer');
const iPhone = puppeteer.devices['iPhone 6'];
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.emulate(iPhone);
await page.goto('https://www.google.com');
// other actions...
await browser.close();
})();
```