Node.js API for Chrome
Go to file
Andrey Lushnikov dbac6788ae Plumb default prompt value to the dialog (#243)
This patch:
- plumbs default prompt value to the dialog
- enables one more phantom test
2017-08-11 12:17:43 -07:00
docs Plumb default prompt value to the dialog (#243) 2017-08-11 12:17:43 -07:00
examples Google search example (#220) 2017-08-11 01:41:42 -07:00
lib Plumb default prompt value to the dialog (#243) 2017-08-11 12:17:43 -07:00
phantom_shim Plumb default prompt value to the dialog (#243) 2017-08-11 12:17:43 -07:00
test Plumb default prompt value to the dialog (#243) 2017-08-11 12:17:43 -07:00
third_party Plumb default prompt value to the dialog (#243) 2017-08-11 12:17:43 -07:00
utils Roll chromium to 492629 (#230) 2017-08-09 16:14:00 -07:00
.editorconfig EditorConfig: 2 space indent (#195) 2017-08-03 09:50:08 -07:00
.eslintignore Lint examples, again #178 (#190) 2017-08-02 15:03:26 -07:00
.eslintrc.js Convert var's to let's 2017-06-22 14:58:39 -07:00
.gitignore Ignore package-lock.json (#191) 2017-08-02 14:18:14 -07:00
.travis.yml Fix typo in coverage 2017-07-27 16:35:17 -07:00
CONTRIBUTING.md Doc polish. Example consistency (#233) 2017-08-10 18:31:54 -07:00
DeviceDescriptors.js Get rid of page.emulate() / page.emulatedDevices() methods 2017-07-20 23:53:06 -07:00
index.js Reformat code using 2 spaces 2017-06-21 14:11:52 -07:00
install.js Use const a lot fo places (#188) 2017-08-02 12:06:47 -07:00
LICENSE Initial commit 2017-05-09 15:16:13 -07:00
package.json Roll chromium to r493673 (#240) 2017-08-11 01:21:02 -07:00
README.md Update README.md 2017-08-10 18:36:02 -07:00
yarn.lock Add more tests to cover Page.pdf() method (#196) (#200) 2017-08-03 14:10:52 -07:00

Puppeteer Build Status

API | FAQ | Contributing

Puppeteer is a Node library which provides a high-level API to control headless Chrome over the DevTools Protocol. It can also be configured to use full (non-headless) Chrome.

What can I do?

Most things that you can do manually in the browser can be done using Puppeteer! Here are a few examples to get you started:

  • Generate screenshots and PDFs of pages.
  • Crawl a SPA and generate pre-rendered content (i.e. "SSR").
  • Scrape content from websites.
  • Automate form submission, UI testing, keyboard input, etc.
  • 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.
  • Capture a timeline trace of your site to help diagnose performance issues.

Getting Started

Installation

Puppeteer requires Node version 7.10 or greater

To use Puppeteer in your project, run:

yarn add puppeteer
# or "npm i puppeteer"

Note

: When you install Puppeteer, it downloads a recent version of Chromium (~71Mb Mac, ~90Mb Linux, ~110Mb Win) that is guaranteed to work with the API. However, you can tell Puppeteer to use any Chromium executable installed on the machine.

Usage

Puppeteer will be familiar to using other browser testing frameworks. You create an instance of Browser, open pages, and then manipulate them with Puppeteer's API.

Example - navigating to https://example.com and saving a screenshot as example.png:

const {Browser} = require('puppeteer');
const browser = new Browser();

(async() => {
const page = await browser.newPage();
await page.goto('https://example.com');
await page.screenshot({path: 'example.png'});

browser.close();
})();

or, without async/await:

const {Browser} = require('puppeteer');
const browser = new Browser();

browser.newPage().then(page => {
  page.goto('https://example.com').then(response => {
     page.screenshot({path: 'example.png'}).then(buffer => {
       browser.close();
     });
  });
});

Puppeteer sets an initial page size to 800px x 600px, which defines the screenshot size. The page size can be customized with Page.setViewport().

Example - create a PDF.

const {Browser} = require('puppeteer');
const browser = new Browser();

(async() => {
const page = await browser.newPage();
await page.goto('https://news.ycombinator.com', {waitUntil: 'networkidle'});
await page.pdf({path: 'hn.pdf', format: 'A4'});

browser.close();
})();

See Page.pdf() for more information about creating pdfs.

Default runtime settings

Uses Headless mode

Puppeteer launches Chromium in headless mode. To launch a full version of Chromium, set the 'headless' option when creating a browser:

const browser = new Browser({headless: false});

Runs a bundled version of Chromium

By default, Puppeteer downloads and uses a specific version of Chromium but it can be configured to use another install of Chrome

Creates a fresh user profile

Puppeteer creates its own Chromium user profile which it cleans up on every run.

API Documentation

Explore the API documentation and examples to learn more.

Contributing to Puppeteer

Check out contributing guide to get an overview of puppeteer development.

FAQ

Q: What is Puppeteer?

Puppeteer is a light-weight Node module to control headless Chrome using the latest version of the DevTools Protocol.

Q: Which Chromium version does Puppeteer use?

Look for chromium_revision in package.json.

Puppeteer bundles Chromium to insure that the latest features it uses are guaranteed to be available. As the DevTools protocol and browser improve over time, Puppeteer will be updated to depend on newer versions of Chromium.

Q: Does Puppeteer work with headless Chromium?

Yes. Puppeteer runs Chromium in headless mode by default.

Q: Why do most of the API methods return promises?

Since Puppeteer's code is run by Node, it exists out-of-process to the controlled Chromium instance. This requires most of the API calls to be asynchronous to allow the necessary roundtrips to the browser.

Q: What is the "Phantom Shim"?

To make sure Puppeteer's API is comprehensive, we built PhantomShim - a lightweight phantomJS script runner built atop of Puppeteer API. We run phantomJS tests against PhantomShim with an ultimate goal to pass them all.

To emulate PhantomJS which runs automation scripts in-process to the automated page, PhantomShim spawns nested event loops. On practice, this might result in unpredictable side-effects and makes the shim unreliable, but this works pretty good for testing goals.

Note

It is strictly not recommended to use PhantomShim out in the wild.

Q: What is the difference between Puppeteer and Selenium / WebDriver?

Selenium / WebDriver is a well-established cross-browser API that is useful for testing cross-browser support.

Puppeteer is useful for single-browser testing. For example, many teams only run unit tests with a single browser (e.g. Phantom). In non-testing use cases, Puppeteer provides a powerful but simple API because it's only targeting one browser that enables you to rapidly develop automation scripts.