Table of Contents

Class GetNodeForLocationCommandResponse

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

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

public sealed class GetNodeForLocationCommandResponse : ICommandResponse<GetNodeForLocationCommandSettings>, ICommandResponse
Inheritance
GetNodeForLocationCommandResponse
Implements
Inherited Members
Extension Methods

Properties

BackendNodeId

Resulting node.

[JsonPropertyName("backendNodeId")]
public long BackendNodeId { get; set; }

Property Value

long

FrameId

Frame this node belongs to.

[JsonPropertyName("frameId")]
public string FrameId { get; set; }

Property Value

string

NodeId

Id of the node at given coordinates, only when enabled and requested document.

[JsonPropertyName("nodeId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? NodeId { get; set; }

Property Value

long?