Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
method PuppeteerDeno.prototype.launch
import { PuppeteerDeno } from "https://deno.land/x/pptr@1.2.0/src/PuppeteerDeno.ts";

Launches puppeteer and launches a browser instance with given arguments and options when specified.

Examples

You can use ignoreDefaultArgs to filter out --mute-audio from default arguments:

const browser = await puppeteer.launch({
  ignoreDefaultArgs: ['--mute-audio']
});

NOTE Puppeteer can also be used to control the Chrome browser, but it works best with the version of Chromium it is bundled with. There is no guarantee it will work with any other version. Use executablePath option with extreme caution. If Google Chrome (rather than Chromium) is preferred, a Chrome Canary or Dev Channel build is suggested. In puppeteer.launch([options]), any mention of Chromium also applies to Chrome. See this article for a description of the differences between Chromium and Chrome. This article describes some differences for Linux users.

Parameters

options:
& { product?: Product; extraPrefsFirefox?: Record<string, unknown>; }
  • Set of configurable options to set on the browser.

Returns

Promise<Browser>

Promise which resolves to browser instance.