
You can add puppeteer-core to your website or app by using one of the following commands: npm i puppeteer-core To download Microsoft Edge, go to Download Microsoft Edge Insider Channels. puppeteer-core is a lightweight version of Puppeteer that launches an existing browser installation, like Microsoft Edge. If you have Microsoft Edge installed, you can use puppeteer-core. You can also configure Puppeteer to run full (non-headless) Microsoft Edge.īy default, when you install Puppeteer, the installer downloads a recent version of Chromium, the open-source browser that Microsoft Edge is also built upon. Headless browsers don't display a user interface (UI), so you must use the command line.

Puppeteer launches headless browsers by default. Puppeteer creates its own browser user profile which it cleans up on every run.The Puppeteer library provides a high-level API to control Chromium-based browsers, including Microsoft Edge, by using the DevTools Protocol. This article describes some differences for Linux users. See this article for a description of the differences between Chromium and Chrome. See Puppeteer.launch() for more information. You can also use Puppeteer with Firefox Nightly (experimental support).

const puppeteer = require ( 'puppeteer' ) Ĭonst browser = await puppeteer.

You create an instance of Browser, open pages, and then manipulate them with Puppeteer's API.Įxample: navigating to and saving a screenshot as example.png: Puppeteer will be familiar to people using other browser testing frameworks. All examples below use async/await which is only supported in Node v7.6.0 or greater. Starting from v3.0.0 Puppeteer starts to rely on Node 10.18.1+. Prior to v1.18.1, Puppeteer required at least Node v6.4.0.
