Table of Contents

Class WaitForNetworkIdleOptions

Namespace
PuppeteerSharp
Assembly
PuppeteerSharp.dll

Optional waiting parameters.

public class WaitForNetworkIdleOptions : WaitForOptions
Inheritance
WaitForNetworkIdleOptions

Properties

Concurrency

Maximum number of concurrent network connections to allow before considering network idle. Defaults to 0, meaning network is idle when there are no active connections.

public int Concurrency { get; set; }

Property Value

int

IdleTime

How long to wait for no network requests in milliseconds, defaults to 500 milliseconds.

public int? IdleTime { get; set; }

Property Value

int?

See Also