34ff00e2fe
* fix: added parts of website * fix: removed unnecessary lines * fix: updated contributing.md * fix: added parts of sidebar * fix: added all APIs * fix: added version 10.0.0 Co-authored-by: Jack Franklin <jacktfranklin@chromium.org>
1.6 KiB
1.6 KiB
Home > puppeteer > Page > emulate
Page.emulate() method
Emulates given device metrics and user agent. This method is a shortcut for calling two methods: Page.setUserAgent() and Page.setViewport() To aid emulation, Puppeteer provides a list of device descriptors that can be obtained via the Puppeteer.devices page.emulate
will resize the page. A lot of websites don't expect phones to change size, so you should emulate before navigating to the page.
Signature:
emulate(options: {
viewport: Viewport;
userAgent: string;
}): Promise<void>;
Parameters
Parameter | Type | Description |
---|---|---|
options | { viewport: Viewport; userAgent: string; } |
Returns:
Promise<void>
Remarks
List of all available devices is available in the source code: src/common/DeviceDescriptors.ts.
Example
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();
})();