Table of Contents

Class AXValue

Namespace
OpenQA.Selenium.DevTools.V146.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

AXRelatedNode[]

Sources

The sources which contributed to the computation of this property.

[JsonPropertyName("sources")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public AXValueSource[]? Sources { get; set; }

Property Value

AXValueSource[]

Type

The type of this value.

[JsonPropertyName("type")]
public AXValueType Type { get; set; }

Property Value

AXValueType

Value

The computed value of this property.

[JsonPropertyName("value")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public object? Value { get; set; }

Property Value

object