An enhanced Puppeteer running on Deno.
await using
support for Browser
, Page
To use Puppeteer in your project,
import puppeteer from "https://deno.land/x/puppeteer_plus/mod.ts";
import puppeteer from "https://deno.land/x/puppeteer_plus/core.ts";
puppeteer-core
is intended to be a lightweight version of Puppeteer for
launching an existing browser installation or for connecting to a remote one. Be
sure that the version of puppeteer-core you install is compatible with the
browser you intend to connect to.
Puppeteer will be familiar to people 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:
Save file as example.js
import puppeteer from "https://deno.land/x/puppeteer_plus/mod.ts";
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto("https://example.com");
await page.screenshot({ path: "example.png" });
await browser.close();
Execute script on the command line
deno run -A --unstable example.js
Puppeteer sets an initial page size to 800×600px, which defines the screenshot
size. The page size can be customized with
Page.setViewport()
.
Example - create a PDF.
Save file as hn.js
import puppeteer from "https://deno.land/x/puppeteer_plus/mod.ts";
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto("https://news.ycombinator.com", {
waitUntil: "networkidle2",
});
await page.pdf({ path: "hn.pdf", format: "a4" });
await browser.close();
Execute script on the command line
deno run -A --unstable hn.js
See
Page.pdf()
for more information about creating pdfs.
Example - evaluate script in the context of the page
Save file as get-dimensions.js
import puppeteer from "https://deno.land/x/puppeteer_plus/mod.ts";
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto("https://example.com");
// Get the "viewport" of the page, as reported by the page.
const dimensions = await page.evaluate(() => {
return {
width: document.documentElement.clientWidth,
height: document.documentElement.clientHeight,
deviceScaleFactor: window.devicePixelRatio,
};
});
console.log("Dimensions:", dimensions);
await browser.close();
Execute script on the command line
deno run -A --unstable get-dimensions.js
See
Page.evaluate()
for more information on evaluate
and related methods like
evaluateOnNewDocument
and exposeFunction
.
puppeteer_plus
is heavily inspired by
deno-puppeteer
, the key
difference is puppeteer_plus
imports TypeScript version while deno-puppeteer
is using JavaScript with types.
This project will definitely not exists without the great work of Puppeteer prject.