Class BrowserTypeConnectOverCDPOptions
- Namespace
- Microsoft.Playwright
- Assembly
- Microsoft.Playwright.dll
public class BrowserTypeConnectOverCDPOptions
- Inheritance
-
BrowserTypeConnectOverCDPOptions
- Inherited Members
Constructors
BrowserTypeConnectOverCDPOptions()
public BrowserTypeConnectOverCDPOptions()
BrowserTypeConnectOverCDPOptions(BrowserTypeConnectOverCDPOptions)
public BrowserTypeConnectOverCDPOptions(BrowserTypeConnectOverCDPOptions clone)
Parameters
Properties
Headers
Additional HTTP headers to be sent with connect request. Optional.
[JsonPropertyName("headers")]
public IEnumerable<KeyValuePair<string, string>>? Headers { get; set; }
Property Value
SlowMo
Slows down Playwright operations by the specified amount of milliseconds. Useful so that you can see what is going on. Defaults to 0.
[JsonPropertyName("slowMo")]
public float? SlowMo { get; set; }
Property Value
Timeout
Maximum time in milliseconds to wait for the connection to be established. Defaults
to 30000
(30 seconds). Pass 0
to disable timeout.
[JsonPropertyName("timeout")]
public float? Timeout { get; set; }