UNPKG

17.9 kBMarkdownView Raw
1# Puppeteer
2
3<!-- [START badges] -->
4[![Linux Build Status](https://img.shields.io/travis/GoogleChrome/puppeteer/master.svg)](https://travis-ci.org/GoogleChrome/puppeteer) [![Windows Build Status](https://img.shields.io/appveyor/ci/aslushnikov/puppeteer/master.svg?logo=appveyor)](https://ci.appveyor.com/project/aslushnikov/puppeteer/branch/master) [![Build Status](https://api.cirrus-ci.com/github/GoogleChrome/puppeteer.svg)](https://cirrus-ci.com/github/GoogleChrome/puppeteer) [![NPM puppeteer package](https://img.shields.io/npm/v/puppeteer.svg)](https://npmjs.org/package/puppeteer)
5<!-- [END badges] -->
6
7<img src="https://user-images.githubusercontent.com/10379601/29446482-04f7036a-841f-11e7-9872-91d1fc2ea683.png" height="200" align="right">
8
9###### [API](https://github.com/GoogleChrome/puppeteer/blob/v1.7.0/docs/api.md) | [FAQ](#faq) | [Contributing](https://github.com/GoogleChrome/puppeteer/blob/master/CONTRIBUTING.md)
10
11> Puppeteer is a Node library which provides a high-level API to control Chrome or Chromium over the [DevTools Protocol](https://chromedevtools.github.io/devtools-protocol/). Puppeteer runs [headless](https://developers.google.com/web/updates/2017/04/headless-chrome) by default, but can be configured to run full (non-headless) Chrome or Chromium.
12
13<!-- [START usecases] -->
14###### What can I do?
15
16Most things that you can do manually in the browser can be done using Puppeteer! Here are a few examples to get you started:
17
18* Generate screenshots and PDFs of pages.
19* Crawl a SPA and generate pre-rendered content (i.e. "SSR").
20* Automate form submission, UI testing, keyboard input, etc.
21* Create an up-to-date, automated testing environment. Run your tests directly in the latest version of Chrome using the latest JavaScript and browser features.
22* Capture a [timeline trace](https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/reference) of your site to help diagnose performance issues.
23* Test Chrome Extensions.
24<!-- [END usecases] -->
25
26Give it a spin: https://try-puppeteer.appspot.com/
27
28<!-- [START getstarted] -->
29## Getting Started
30
31### Installation
32
33To use Puppeteer in your project, run:
34
35```bash
36npm i puppeteer
37# or "yarn add puppeteer"
38```
39
40Note: When you install Puppeteer, it downloads a recent version of Chromium (~170Mb Mac, ~282Mb Linux, ~280Mb Win) that is guaranteed to work with the API. To skip the download, see [Environment variables](https://github.com/GoogleChrome/puppeteer/blob/v1.7.0/docs/api.md#environment-variables).
41
42
43### puppeteer-core
44
45Since version 1.7.0 we publish the [`puppeteer-core`](https://www.npmjs.com/package/puppeteer-core) package,
46a version of Puppeteer that doesn't download Chromium by default.
47
48```bash
49npm i puppeteer-core
50```
51
52`puppeteer-core` is intended to be a lightweight version of puppeteer for launching an existing browser installation or for connecting to a remote one.
53
54### Usage
55
56Note: Puppeteer requires at least Node v6.4.0, but the examples below use async/await which is only supported in Node v7.6.0 or greater.
57
58Puppeteer will be familiar to people using other browser testing frameworks. You create an instance
59of `Browser`, open pages, and then manipulate them with [Puppeteer's API](https://github.com/GoogleChrome/puppeteer/blob/v1.7.0/docs/api.md#).
60
61**Example** - navigating to https://example.com and saving a screenshot as *example.png*:
62
63Save file as **example.js**
64
65```js
66const puppeteer = require('puppeteer');
67
68(async () => {
69 const browser = await puppeteer.launch();
70 const page = await browser.newPage();
71 await page.goto('https://example.com');
72 await page.screenshot({path: 'example.png'});
73
74 await browser.close();
75})();
76```
77
78Execute script on the command line
79
80```bash
81node example.js
82```
83
84Puppeteer sets an initial page size to 800px x 600px, which defines the screenshot size. The page size can be customized with [`Page.setViewport()`](https://github.com/GoogleChrome/puppeteer/blob/v1.7.0/docs/api.md#pagesetviewportviewport).
85
86**Example** - create a PDF.
87
88Save file as **hn.js**
89
90```js
91const puppeteer = require('puppeteer');
92
93(async () => {
94 const browser = await puppeteer.launch();
95 const page = await browser.newPage();
96 await page.goto('https://news.ycombinator.com', {waitUntil: 'networkidle2'});
97 await page.pdf({path: 'hn.pdf', format: 'A4'});
98
99 await browser.close();
100})();
101```
102
103Execute script on the command line
104
105```bash
106node hn.js
107```
108
109See [`Page.pdf()`](https://github.com/GoogleChrome/puppeteer/blob/v1.7.0/docs/api.md#pagepdfoptions) for more information about creating pdfs.
110
111**Example** - evaluate script in the context of the page
112
113Save file as **get-dimensions.js**
114
115```js
116const puppeteer = require('puppeteer');
117
118(async () => {
119 const browser = await puppeteer.launch();
120 const page = await browser.newPage();
121 await page.goto('https://example.com');
122
123 // Get the "viewport" of the page, as reported by the page.
124 const dimensions = await page.evaluate(() => {
125 return {
126 width: document.documentElement.clientWidth,
127 height: document.documentElement.clientHeight,
128 deviceScaleFactor: window.devicePixelRatio
129 };
130 });
131
132 console.log('Dimensions:', dimensions);
133
134 await browser.close();
135})();
136```
137
138Execute script on the command line
139
140```bash
141node get-dimensions.js
142```
143
144See [`Page.evaluate()`](https://github.com/GoogleChrome/puppeteer/blob/v1.7.0/docs/api.md#pageevaluatepagefunction-args) for more information on `evaluate` and related methods like `evaluateOnNewDocument` and `exposeFunction`.
145
146<!-- [END getstarted] -->
147
148<!-- [START runtimesettings] -->
149## Default runtime settings
150
151**1. Uses Headless mode**
152
153Puppeteer launches Chromium in [headless mode](https://developers.google.com/web/updates/2017/04/headless-chrome). To launch a full version of Chromium, set the ['headless' option](https://github.com/GoogleChrome/puppeteer/blob/v1.7.0/docs/api.md#puppeteerlaunchoptions) when launching a browser:
154
155```js
156const browser = await puppeteer.launch({headless: false}); // default is true
157```
158
159**2. Runs a bundled version of Chromium**
160
161By default, Puppeteer downloads and uses a specific version of Chromium so its API
162is guaranteed to work out of the box. To use Puppeteer with a different version of Chrome or Chromium,
163pass in the executable's path when creating a `Browser` instance:
164
165```js
166const browser = await puppeteer.launch({executablePath: '/path/to/Chrome'});
167```
168
169See [`Puppeteer.launch()`](https://github.com/GoogleChrome/puppeteer/blob/v1.7.0/docs/api.md#puppeteerlaunchoptions) for more information.
170
171See [`this article`](https://www.howtogeek.com/202825/what%E2%80%99s-the-difference-between-chromium-and-chrome/) for a description of the differences between Chromium and Chrome. [`This article`](https://chromium.googlesource.com/chromium/src/+/lkcr/docs/chromium_browser_vs_google_chrome.md) describes some differences for Linux users.
172
173**3. Creates a fresh user profile**
174
175Puppeteer creates its own Chromium user profile which it **cleans up on every run**.
176
177<!-- [END runtimesettings] -->
178
179## Resources
180
181- [API Documentation](https://github.com/GoogleChrome/puppeteer/blob/v1.7.0/docs/api.md)
182- [Examples](https://github.com/GoogleChrome/puppeteer/tree/master/examples/)
183- [Community list of Puppeteer resources](https://github.com/transitive-bullshit/awesome-puppeteer)
184
185<!-- [START debugging] -->
186
187## Debugging tips
188
1891. Turn off headless mode - sometimes it's useful to see what the browser is
190 displaying. Instead of launching in headless mode, launch a full version of
191 the browser using `headless: false`:
192
193 const browser = await puppeteer.launch({headless: false});
194
1952. Slow it down - the `slowMo` option slows down Puppeteer operations by the
196 specified amount of milliseconds. It's another way to help see what's going on.
197
198 const browser = await puppeteer.launch({
199 headless: false,
200 slowMo: 250 // slow down by 250ms
201 });
202
2033. Capture console output - You can listen for the `console` event.
204 This is also handy when debugging code in `page.evaluate()`:
205
206 page.on('console', msg => console.log('PAGE LOG:', msg.text()));
207
208 await page.evaluate(() => console.log(`url is ${location.href}`));
209
2104. Stop test execution and use a debugger in browser
211
212 - Use `{devtools: true}` when launching Puppeteer:
213
214 `const browser = await puppeteer.launch({devtools: true});`
215
216 - Change default test timeout:
217
218 jest: `jest.setTimeout(100000);`
219
220 jasmine: `jasmine.DEFAULT_TIMEOUT_INTERVAL = 100000;`
221
222 mocha: `this.timeout(100000);` (don't forget to change test to use [function and not '=>'](https://stackoverflow.com/a/23492442))
223
224 - Add an evaluate statement with `debugger` inside / add `debugger` to an existing evaluate statement:
225
226 `await page.evaluate(() => {debugger;});`
227
228 The test will now stop executing in the above evaluate statement, and chromium will stop in debug mode.
229
2305. Enable verbose logging - All public API calls and internal protocol traffic
231 will be logged via the [`debug`](https://github.com/visionmedia/debug) module under the `puppeteer` namespace.
232
233 # Basic verbose logging
234 env DEBUG="puppeteer:*" node script.js
235
236 # Debug output can be enabled/disabled by namespace
237 env DEBUG="puppeteer:*,-puppeteer:protocol" node script.js # everything BUT protocol messages
238 env DEBUG="puppeteer:session" node script.js # protocol session messages (protocol messages to targets)
239 env DEBUG="puppeteer:mouse,puppeteer:keyboard" node script.js # only Mouse and Keyboard API calls
240
241 # Protocol traffic can be rather noisy. This example filters out all Network domain messages
242 env DEBUG="puppeteer:*" env DEBUG_COLORS=true node script.js 2>&1 | grep -v '"Network'
243
244<!-- [END debugging] -->
245
246## Contributing to Puppeteer
247
248Check out [contributing guide](https://github.com/GoogleChrome/puppeteer/blob/master/CONTRIBUTING.md) to get an overview of Puppeteer development.
249
250<!-- [START faq] -->
251
252# FAQ
253
254#### Q: Who maintains Puppeteer?
255
256The Chrome DevTools team maintains the library, but we'd love your help and expertise on the project!
257See [Contributing](https://github.com/GoogleChrome/puppeteer/blob/master/CONTRIBUTING.md).
258
259#### Q: What are Puppeteer’s goals and principles?
260
261The goals of the project are:
262
263- Provide a slim, canonical library that highlights the capabilities of the [DevTools Protocol](https://chromedevtools.github.io/devtools-protocol/).
264- Provide a reference implementation for similar testing libraries. Eventually, these other frameworks could adopt Puppeteer as their foundational layer.
265- Grow the adoption of headless/automated browser testing.
266- Help dogfood new DevTools Protocol features...and catch bugs!
267- Learn more about the pain points of automated browser testing and help fill those gaps.
268
269We adapt [Chromium principles](https://www.chromium.org/developers/core-principles) to help us drive product decisions:
270- **Speed**: Puppeteer has almost zero performance overhead over an automated page.
271- **Security**: Puppeteer operates off-process with respect to Chromium, making it safe to automate potentially malicious pages.
272- **Stability**: Puppeteer should not be flaky and should not leak memory.
273- **Simplicity**: Puppeteer provides a high-level API that’s easy to use, understand, and debug.
274
275#### Q: Is Puppeteer replacing Selenium/WebDriver?
276
277**No**. Both projects are valuable for very different reasons:
278- Selenium/WebDriver focuses on cross-browser automation; its value proposition is a single standard API that works across all major browsers.
279- Puppeteer focuses on Chromium; its value proposition is richer functionality and higher reliability.
280
281That said, you **can** use Puppeteer to run tests against Chromium, e.g. using the community-driven [jest-puppeteer](https://github.com/smooth-code/jest-puppeteer). While this probably shouldn’t be your only testing solution, it does have a few good points compared to WebDriver:
282
283- Puppeteer requires zero setup and comes bundled with the Chromium version it works best with, making it [very easy to start with](https://github.com/GoogleChrome/puppeteer/#getting-started). At the end of the day, it’s better to have a few tests running chromium-only, than no tests at all.
284- Puppeteer has event-driven architecture, which removes a lot of potential flakiness. There’s no need for evil “sleep(1000)” calls in puppeteer scripts.
285- Puppeteer runs headless by default, which makes it fast to run. Puppeteer v1.5.0 also exposes browser contexts, making it possible to efficiently parallelize test execution.
286- Puppeteer shines when it comes to debugging: flip the “headless” bit to false, add “slowMo”, and you’ll see what the browser is doing. You can even open Chrome DevTools to inspect the test environment.
287
288#### Q: Why doesn’t Puppeteer v.XXX work with Chromium v.YYY?
289
290We see Puppeteer as an **indivisible entity** with Chromium. Each version of Puppeteer bundles a specific version of Chromium – **the only** version it is guaranteed to work with.
291
292This is not an artificial constraint: A lot of work on Puppeteer is actually taking place in the Chromium repository. Here’s a typical story:
293- A Puppeteer bug is reported: https://github.com/GoogleChrome/puppeteer/issues/2709
294- It turned out this is an issue with the DevTools protocol, so we’re fixing it in Chromium: https://chromium-review.googlesource.com/c/chromium/src/+/1102154
295- Once the upstream fix is landed, we roll updated Chromium into Puppeteer: https://github.com/GoogleChrome/puppeteer/pull/2769
296
297However, oftentimes it is desirable to use Puppeteer with the official Google Chrome rather than Chromium. For this to work, you should pick the version of Puppeteer that uses the Chromium version close enough to Chrome.
298
299#### Q: Which Chromium version does Puppeteer use?
300
301Look for `chromium_revision` in [package.json](https://github.com/GoogleChrome/puppeteer/blob/master/package.json).
302
303#### Q: What’s considered a “Navigation”?
304
305From Puppeteer’s standpoint, **“navigation” is anything that changes a page’s URL**.
306Aside from regular navigation where the browser hits the network to fetch a new document from the web server, this includes [anchor navigations](https://www.w3.org/TR/html5/single-page.html#scroll-to-fragid) and [History API](https://developer.mozilla.org/en-US/docs/Web/API/History_API) usage.
307
308With this definition of “navigation,” **Puppeteer works seamlessly with single-page applications.**
309
310#### Q: What’s the difference between a “trusted" and "untrusted" input event?
311
312In browsers, input events could be divided into two big groups: trusted vs. untrusted.
313
314- **Trusted events**: events generated by users interacting with the page, e.g. using a mouse or keyboard.
315- **Untrusted event**: events generated by Web APIs, e.g. `document.createEvent` or `element.click()` methods.
316
317Websites can distinguish between these two groups:
318- using an [`Event.isTrusted`](https://developer.mozilla.org/en-US/docs/Web/API/Event/isTrusted) event flag
319- sniffing for accompanying events. For example, every trusted `'click'` event is preceded by `'mousedown'` and `'mouseup'` events.
320
321For automation purposes it’s important to generate trusted events. **All input events generated with Puppeteer are trusted and fire proper accompanying events.** If, for some reason, one needs an untrusted event, it’s always possible to hop into a page context with `page.evaluate` and generate a fake event:
322
323```js
324await page.evaluate(() => {
325 document.querySelector('button[type=submit]').click();
326});
327```
328
329#### Q: What features does Puppeteer not support?
330
331You may find that Puppeteer does not behave as expected when controlling pages that incorporate audio and video. (For example, [video playback/screenshots is likely to fail](https://github.com/GoogleChrome/puppeteer/issues/291).) There are two reasons for this:
332
333* Puppeteer is bundled with Chromium--not Chrome--and so by default, it inherits all of [Chromium's media-related limitations](https://www.chromium.org/audio-video). This means that Puppeteer does not support licensed formats such as AAC or H.264. (However, it is possible to force Puppeteer to use a separately-installed version Chrome instead of Chromium via the [`executablePath` option to `puppeteer.launch`](https://github.com/GoogleChrome/puppeteer/blob/v1.7.0/docs/api.md#puppeteerlaunchoptions). You should only use this configuration if you need an official release of Chrome that supports these media formats.)
334* Since Puppeteer (in all configurations) controls a desktop version of Chromium/Chrome, features that are only supported by the mobile version of Chrome are not supported. This means that Puppeteer [does not support HTTP Live Streaming (HLS)](https://caniuse.com/#feat=http-live-streaming).
335
336#### Q: I am having trouble installing / running Puppeteer in my test environment?
337We have a [troubleshooting](https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md) guide for various operating systems that lists the required dependencies.
338
339#### Q: How do I try/test a prerelease version of Puppeteer?
340
341You can check out this repo or install the latest prerelease from npm:
342
343```bash
344npm i --save puppeteer@next
345```
346
347Please note that prerelease may be unstable and contain bugs.
348
349#### Q: I have more questions! Where do I ask?
350
351There are many ways to get help on Puppeteer:
352- [bugtracker](https://github.com/GoogleChrome/puppeteer/issues)
353- [stackoverflow](https://stackoverflow.com/questions/tagged/puppeteer)
354- [slack channel](https://join.slack.com/t/puppeteer/shared_invite/enQtMzU4MjIyMDA5NTM4LTM1OTdkNDhlM2Y4ZGUzZDdjYjM5ZWZlZGFiZjc4MTkyYTVlYzIzYjU5NDIyNzgyMmFiNDFjN2UzNWU0N2ZhZDc)
355
356Make sure to search these channels before posting your question.
357
358
359<!-- [END faq] -->