Table of Contents

Class WaitForSelectorOptions

Namespace
PuppeteerSharp
Assembly
PuppeteerSharp.dll

Optional waiting parameters.

public class WaitForSelectorOptions : WaitForOptions
Inheritance
WaitForSelectorOptions

Properties

Hidden

Wait for element to not be found in the DOM or to be hidden.

public bool? Hidden { get; set; }

Property Value

bool?

Root

Root element.

public IElementHandle Root { get; set; }

Property Value

IElementHandle

Visible

Wait for element to be present in DOM and to be visible.

public bool? Visible { get; set; }

Property Value

bool?

See Also