Class GetFullAXTreeCommandSettings
- Namespace
- OpenQA.Selenium.DevTools.V148.Accessibility
- Assembly
- Selenium.WebDriver.dll
Fetches the entire accessibility tree for the root Document
public sealed class GetFullAXTreeCommandSettings : ICommand
- Inheritance
-
GetFullAXTreeCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
Depth
The maximum depth at which descendants of the root node should be retrieved. If omitted, the full tree is returned.
[JsonPropertyName("depth")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? Depth { get; set; }
Property Value
- long?
FrameId
The frame for whose document the AX tree should be retrieved. If omitted, the root frame is used.
[JsonPropertyName("frameId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? FrameId { get; set; }