Class QueryAXTreeCommandResponse
- Namespace
- OpenQA.Selenium.DevTools.V147.Accessibility
- Assembly
- Selenium.WebDriver.dll
Response for Query a DOM node's accessibility subtree for accessible name and role.
This command computes the name and role for all nodes in the subtree, including those that are
ignored for accessibility, and returns those that match the specified name and role. If no DOM
node is specified, or the DOM node does not exist, the command returns an error. If neither
accessibleName or role is specified, it returns all the accessibility nodes in the subtree.
public sealed class QueryAXTreeCommandResponse : ICommandResponse<QueryAXTreeCommandSettings>, ICommandResponse
- Inheritance
-
QueryAXTreeCommandResponse
- Implements
- Inherited Members
- Extension Methods
Properties
Nodes
A list of Accessibility.AXNode matching the specified attributes,
including nodes that are ignored for accessibility.
[JsonPropertyName("nodes")]
public AXNode[] Nodes { get; set; }
Property Value
- AXNode[]