UNPKG

17.4 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###### <!-- gen:last-released-api -->[API](https://github.com/GoogleChrome/puppeteer/blob/v1.6.2/docs/api.md)<!-- gen:stop --> | [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<!-- [END usecases] -->
24
25Give it a spin: https://try-puppeteer.appspot.com/
26
27<!-- [START getstarted] -->
28## Getting Started
29
30### Installation
31
32To use Puppeteer in your project, run:
33
34```bash
35npm i puppeteer
36# or "yarn add puppeteer"
37```
38
39Note: 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/master/docs/api.md#environment-variables).
40
41### Usage
42
43Note: 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.
44
45Puppeteer will be familiar to people using other browser testing frameworks. You create an instance
46of `Browser`, open pages, and then manipulate them with [Puppeteer's API](https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#).
47
48**Example** - navigating to https://example.com and saving a screenshot as *example.png*:
49
50Save file as **example.js**
51
52```js
53const puppeteer = require('puppeteer');
54
55(async () => {
56 const browser = await puppeteer.launch();
57 const page = await browser.newPage();
58 await page.goto('https://example.com');
59 await page.screenshot({path: 'example.png'});
60
61 await browser.close();
62})();
63```
64
65Execute script on the command line
66
67```bash
68node example.js
69```
70
71Puppeteer 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/master/docs/api.md#pagesetviewportviewport).
72
73**Example** - create a PDF.
74
75Save file as **hn.js**
76
77```js
78const puppeteer = require('puppeteer');
79
80(async () => {
81 const browser = await puppeteer.launch();
82 const page = await browser.newPage();
83 await page.goto('https://news.ycombinator.com', {waitUntil: 'networkidle2'});
84 await page.pdf({path: 'hn.pdf', format: 'A4'});
85
86 await browser.close();
87})();
88```
89
90Execute script on the command line
91
92```bash
93node hn.js
94```
95
96See [`Page.pdf()`](https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagepdfoptions) for more information about creating pdfs.
97
98**Example** - evaluate script in the context of the page
99
100Save file as **get-dimensions.js**
101
102```js
103const puppeteer = require('puppeteer');
104
105(async () => {
106 const browser = await puppeteer.launch();
107 const page = await browser.newPage();
108 await page.goto('https://example.com');
109
110 // Get the "viewport" of the page, as reported by the page.
111 const dimensions = await page.evaluate(() => {
112 return {
113 width: document.documentElement.clientWidth,
114 height: document.documentElement.clientHeight,
115 deviceScaleFactor: window.devicePixelRatio
116 };
117 });
118
119 console.log('Dimensions:', dimensions);
120
121 await browser.close();
122})();
123```
124
125Execute script on the command line
126
127```bash
128node get-dimensions.js
129```
130
131See [`Page.evaluate()`](https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pageevaluatepagefunction-args) for more information on `evaluate` and related methods like `evaluateOnNewDocument` and `exposeFunction`.
132
133<!-- [END getstarted] -->
134
135<!-- [START runtimesettings] -->
136## Default runtime settings
137
138**1. Uses Headless mode**
139
140Puppeteer 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/master/docs/api.md#puppeteerlaunchoptions) when launching a browser:
141
142```js
143const browser = await puppeteer.launch({headless: false}); // default is true
144```
145
146**2. Runs a bundled version of Chromium**
147
148By default, Puppeteer downloads and uses a specific version of Chromium so its API
149is guaranteed to work out of the box. To use Puppeteer with a different version of Chrome or Chromium,
150pass in the executable's path when creating a `Browser` instance:
151
152```js
153const browser = await puppeteer.launch({executablePath: '/path/to/Chrome'});
154```
155
156See [`Puppeteer.launch()`](https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#puppeteerlaunchoptions) for more information.
157
158See [`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.
159
160**3. Creates a fresh user profile**
161
162Puppeteer creates its own Chromium user profile which it **cleans up on every run**.
163
164<!-- [END runtimesettings] -->
165
166## API Documentation
167
168Explore the [API documentation](docs/api.md) and [examples](https://github.com/GoogleChrome/puppeteer/tree/master/examples/) to learn more.
169
170<!-- [START debugging] -->
171
172## Debugging tips
173
1741. Turn off headless mode - sometimes it's useful to see what the browser is
175 displaying. Instead of launching in headless mode, launch a full version of
176 the browser using `headless: false`:
177
178 const browser = await puppeteer.launch({headless: false});
179
1802. Slow it down - the `slowMo` option slows down Puppeteer operations by the
181 specified amount of milliseconds. It's another way to help see what's going on.
182
183 const browser = await puppeteer.launch({
184 headless: false,
185 slowMo: 250 // slow down by 250ms
186 });
187
1883. Capture console output - You can listen for the `console` event.
189 This is also handy when debugging code in `page.evaluate()`:
190
191 page.on('console', msg => console.log('PAGE LOG:', msg.text()));
192
193 await page.evaluate(() => console.log(`url is ${location.href}`));
194
1954. Stop test execution and use a debugger in browser
196
197 - Use `{devtools: true}` when launching Puppeteer:
198
199 `const browser = await puppeteer.launch({devtools: true});`
200
201 - Change default test timeout:
202
203 jest: `jest.setTimeout(100000);`
204
205 jasmine: `jasmine.DEFAULT_TIMEOUT_INTERVAL = 100000;`
206
207 mocha: `this.timeout(100000);` (don't forget to change test to use [function and not '=>'](https://stackoverflow.com/a/23492442))
208
209 - Add an evaluate statement with `debugger` inside / add `debugger` to an existing evaluate statement:
210
211 `await page.evaluate(() => {debugger;});`
212
213 The test will now stop executing in the above evaluate statement, and chromium will stop in debug mode.
214
2155. Enable verbose logging - All public API calls and internal protocol traffic
216 will be logged via the [`debug`](https://github.com/visionmedia/debug) module under the `puppeteer` namespace.
217
218 # Basic verbose logging
219 env DEBUG="puppeteer:*" node script.js
220
221 # Debug output can be enabled/disabled by namespace
222 env DEBUG="puppeteer:*,-puppeteer:protocol" node script.js # everything BUT protocol messages
223 env DEBUG="puppeteer:session" node script.js # protocol session messages (protocol messages to targets)
224 env DEBUG="puppeteer:mouse,puppeteer:keyboard" node script.js # only Mouse and Keyboard API calls
225
226 # Protocol traffic can be rather noisy. This example filters out all Network domain messages
227 env DEBUG="puppeteer:*" env DEBUG_COLORS=true node script.js 2>&1 | grep -v '"Network'
228
229<!-- [END debugging] -->
230
231## Contributing to Puppeteer
232
233Check out [contributing guide](https://github.com/GoogleChrome/puppeteer/blob/master/CONTRIBUTING.md) to get an overview of Puppeteer development.
234
235<!-- [START faq] -->
236
237# FAQ
238
239#### Q: Who maintains Puppeteer?
240
241The Chrome DevTools team maintains the library, but we'd love your help and expertise on the project!
242See [Contributing](https://github.com/GoogleChrome/puppeteer/blob/master/CONTRIBUTING.md).
243
244#### Q: What are Puppeteer’s goals and principles?
245
246The goals of the project are:
247
248- Provide a slim, canonical library that highlights the capabilities of the [DevTools Protocol](https://chromedevtools.github.io/devtools-protocol/).
249- Provide a reference implementation for similar testing libraries. Eventually, these other frameworks could adopt Puppeteer as their foundational layer.
250- Grow the adoption of headless/automated browser testing.
251- Help dogfood new DevTools Protocol features...and catch bugs!
252- Learn more about the pain points of automated browser testing and help fill those gaps.
253
254We adapt [Chromium principles](https://www.chromium.org/developers/core-principles) to help us drive product decisions:
255- **Speed**: Puppeteer has almost zero performance overhead over an automated page.
256- **Security**: Puppeteer operates off-process with respect to Chromium, making it safe to automate potentially malicious pages.
257- **Stability**: Puppeteer should not be flaky and should not leak memory.
258- **Simplicity**: Puppeteer provides a high-level API that’s easy to use, understand, and debug.
259
260#### Q: Is Puppeteer replacing Selenium/WebDriver?
261
262**No**. Both projects are valuable for very different reasons:
263- Selenium/WebDriver focuses on cross-browser automation; its value proposition is a single standard API that works across all major browsers.
264- Puppeteer focuses on Chromium; its value proposition is richer functionality and higher reliability.
265
266That 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:
267
268- 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.
269- Puppeteer has event-driven architecture, which removes a lot of potential flakiness. There’s no need for evil “sleep(1000)” calls in puppeteer scripts.
270- 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.
271- 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.
272
273#### Q: Why doesn’t Puppeteer v.XXX work with Chromium v.YYY?
274
275We 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.
276
277This is not an artificial constraint: A lot of work on Puppeteer is actually taking place in the Chromium repository. Here’s a typical story:
278- A Puppeteer bug is reported: https://github.com/GoogleChrome/puppeteer/issues/2709
279- 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
280- Once the upstream fix is landed, we roll updated Chromium into Puppeteer: https://github.com/GoogleChrome/puppeteer/pull/2769
281
282However, 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.
283
284#### Q: Which Chromium version does Puppeteer use?
285
286Look for `chromium_revision` in [package.json](https://github.com/GoogleChrome/puppeteer/blob/master/package.json).
287
288#### Q: What’s considered a “Navigation”?
289
290From Puppeteer’s standpoint, **“navigation” is anything that changes a page’s URL**.
291Aside 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.
292
293With this definition of “navigation,” **Puppeteer works seamlessly with single-page applications.**
294
295#### Q: What’s the difference between a “trusted" and "untrusted" input event?
296
297In browsers, input events could be divided into two big groups: trusted vs. untrusted.
298
299- **Trusted events**: events generated by users interacting with the page, e.g. using a mouse or keyboard.
300- **Untrusted event**: events generated by Web APIs, e.g. `document.createEvent` or `element.click()` methods.
301
302Websites can distinguish between these two groups:
303- using an [`Event.isTrusted`](https://developer.mozilla.org/en-US/docs/Web/API/Event/isTrusted) event flag
304- sniffing for accompanying events. For example, every trusted `'click'` event is preceded by `'mousedown'` and `'mouseup'` events.
305
306For 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:
307
308```js
309await page.evaluate(() => {
310 document.querySelector('button[type=submit]').click();
311});
312```
313
314#### Q: What features does Puppeteer not support?
315
316You 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:
317
318* 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/master/docs/api.md#puppeteerlaunchoptions). You should only use this configuration if you need an official release of Chrome that supports these media formats.)
319* 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).
320
321#### Q: I am having trouble installing / running Puppeteer in my test environment?
322We have a [troubleshooting](https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md) guide for various operating systems that lists the required dependencies.
323
324#### Q: How do I try/test a prerelease version of Puppeteer?
325
326You can check out this repo or install the latest prerelease from npm:
327
328```bash
329npm i --save puppeteer@next
330```
331
332Please note that prerelease may be unstable and contain bugs.
333
334#### Q: I have more questions! Where do I ask?
335
336There are many ways to get help on Puppeteer:
337- [bugtracker](https://github.com/GoogleChrome/puppeteer/issues)
338- [stackoverflow](https://stackoverflow.com/questions/tagged/puppeteer)
339- [slack channel](https://join.slack.com/t/puppeteer/shared_invite/enQtMzU4MjIyMDA5NTM4LTM1OTdkNDhlM2Y4ZGUzZDdjYjM5ZWZlZGFiZjc4MTkyYTVlYzIzYjU5NDIyNzgyMmFiNDFjN2UzNWU0N2ZhZDc)
340
341Make sure to search these channels before posting your question.
342
343
344<!-- [END faq] -->