Table of Contents

Class MouseClickOptions

Namespace
Microsoft.Playwright
Assembly
Microsoft.Playwright.dll
public class MouseClickOptions
Inheritance
MouseClickOptions
Inherited Members

Constructors

MouseClickOptions()

public MouseClickOptions()

MouseClickOptions(MouseClickOptions)

public MouseClickOptions(MouseClickOptions clone)

Parameters

clone MouseClickOptions

Properties

Button

Defaults to left.

[JsonPropertyName("button")]
public MouseButton? Button { get; set; }

Property Value

MouseButton?

ClickCount

defaults to 1. See .

[JsonPropertyName("clickCount")]
public int? ClickCount { get; set; }

Property Value

int?

Delay

Time to wait between mousedown and mouseup in milliseconds. Defaults to 0.

[JsonPropertyName("delay")]
public float? Delay { get; set; }

Property Value

float?