Skip to main content
Module

x/puppeteer/mod.ts>BrowserConnectOptions

A port of puppeteer running on Deno
Latest
interface BrowserConnectOptions
Re-export
import { type BrowserConnectOptions } from "https://deno.land/x/puppeteer@16.2.0/mod.ts";

Generic browser options that can be passed when launching any browser or when connecting to an existing browser instance.

Properties

optional
ignoreHTTPSErrors: boolean

Whether to ignore HTTPS errors during navigation.

optional
defaultViewport: Viewport | null

Sets the viewport for each page.

optional
slowMo: number

Slows down Puppeteer operations by the specified amount of milliseconds to aid debugging.

optional
targetFilter: TargetFilterCallback

Callback to decide if Puppeteer should connect to a given target or not.

optional
_isPageTarget: IsPageTargetCallback