Class AXValue
- Namespace
- OpenQA.Selenium.DevTools.V148.Accessibility
- Assembly
- Selenium.WebDriver.dll
A single computed AX property.
public sealed class AXValue
- Inheritance
-
AXValue
- Inherited Members
Properties
RelatedNodes
One or more related nodes, if applicable.
[JsonPropertyName("relatedNodes")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public AXRelatedNode[]? RelatedNodes { get; set; }
Property Value
Sources
The sources which contributed to the computation of this property.
[JsonPropertyName("sources")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public AXValueSource[]? Sources { get; set; }
Property Value
Type
The type of this value.
[JsonPropertyName("type")]
public AXValueType Type { get; set; }
Property Value
Value
The computed value of this property.
[JsonPropertyName("value")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public object? Value { get; set; }