Table of Contents

Class GetNodeForLocationCommandSettings

Namespace
OpenQA.Selenium.DevTools.V147.DOM
Assembly
Selenium.WebDriver.dll

Returns node id at given location. Depending on whether DOM domain is enabled, nodeId is either returned or not.

public sealed class GetNodeForLocationCommandSettings : ICommand
Inheritance
GetNodeForLocationCommandSettings
Implements
Inherited Members

Properties

CommandName

Gets the name of the command.

[JsonIgnore]
public string CommandName { get; }

Property Value

string

IgnorePointerEventsNone

Whether to ignore pointer-events: none on elements and hit test them.

[JsonPropertyName("ignorePointerEventsNone")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? IgnorePointerEventsNone { get; set; }

Property Value

bool?

IncludeUserAgentShadowDOM

False to skip to the nearest non-UA shadow root ancestor (default: false).

[JsonPropertyName("includeUserAgentShadowDOM")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? IncludeUserAgentShadowDOM { get; set; }

Property Value

bool?

X

X coordinate.

[JsonPropertyName("x")]
public long X { get; set; }

Property Value

long

Y

Y coordinate.

[JsonPropertyName("y")]
public long Y { get; set; }

Property Value

long