Table of Contents

Interface IBrowserOptions

Namespace
PuppeteerSharp
Assembly
PuppeteerSharp.dll

Browser options.

public interface IBrowserOptions

Properties

AcceptInsecureCerts

Whether to ignore HTTPS errors during navigation. Defaults to false.

bool AcceptInsecureCerts { get; }

Property Value

bool

DefaultViewport

Gets or sets the default Viewport.

ViewPortOptions DefaultViewport { get; set; }

Property Value

ViewPortOptions

The default Viewport.

IssuesEnabled

Experimental setting to disable monitoring issue events by default.

bool IssuesEnabled { get; set; }

Property Value

bool

NetworkEnabled

Experimental setting to disable monitoring network events by default. When set to false, parts of Puppeteer that depend on network events would not work such as IRequest and IResponse.

bool NetworkEnabled { get; set; }

Property Value

bool