Table of Contents

Class SetChildNodesEventArgs

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

Fired when backend wants to provide client with the missing DOM structure. This happens upon most of the calls requesting node ids.

public sealed class SetChildNodesEventArgs : EventArgs
Inheritance
SetChildNodesEventArgs
Inherited Members

Properties

Nodes

Child nodes array.

[JsonPropertyName("nodes")]
public Node[] Nodes { get; set; }

Property Value

Node[]

ParentId

Parent node id to populate with children.

[JsonPropertyName("parentId")]
public long ParentId { get; set; }

Property Value

long