Class GetPartialAXTreeCommandSettings
- Namespace
- OpenQA.Selenium.DevTools.V147.Accessibility
- Assembly
- Selenium.WebDriver.dll
Fetches the accessibility node and partial accessibility tree for this DOM node, if it exists.
public sealed class GetPartialAXTreeCommandSettings : ICommand
- Inheritance
-
GetPartialAXTreeCommandSettings
- Implements
- Inherited Members
Properties
BackendNodeId
Identifier of the backend node to get the partial accessibility tree for.
[JsonPropertyName("backendNodeId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? BackendNodeId { get; set; }
Property Value
- long?
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
FetchRelatives
Whether to fetch this node's ancestors, siblings and children. Defaults to true.
[JsonPropertyName("fetchRelatives")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? FetchRelatives { get; set; }
Property Value
- bool?
NodeId
Identifier of the node to get the partial accessibility tree for.
[JsonPropertyName("nodeId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? NodeId { get; set; }
Property Value
- long?
ObjectId
JavaScript object id of the node wrapper to get the partial accessibility tree for.
[JsonPropertyName("objectId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? ObjectId { get; set; }