0
0
mirror of https://github.com/puppeteer/puppeteer synced 2024-06-14 14:02:48 +00:00
puppeteer/docs/api/puppeteer.browserconnectoptions.md
Miki Lombardi 39e3d4bceb docs: Upgrading to Docusaurus V3 ()
Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
2023-11-29 13:08:08 +01:00

2.2 KiB

sidebar_label
BrowserConnectOptions

BrowserConnectOptions interface

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

Signature:

export interface BrowserConnectOptions

Properties

Property Modifiers Type Description Default
defaultViewport optional Viewport | null Sets the viewport for each page. '{width: 800, height: 600}'
ignoreHTTPSErrors optional boolean Whether to ignore HTTPS errors during navigation. false
protocol optional ProtocolType 'cdp'
protocolTimeout optional number Timeout setting for individual protocol (CDP) calls. 180_000
slowMo optional number Slows down Puppeteer operations by the specified amount of milliseconds to aid debugging.
targetFilter optional TargetFilterCallback Callback to decide if Puppeteer should connect to a given target or not.