Class AXValue
- java.lang.Object
-
- org.openqa.selenium.devtools.v112.accessibility.model.AXValue
-
public class AXValue extends java.lang.Object
A single computed AX property.
-
-
Constructor Summary
Constructors Constructor Description AXValue(AXValueType type, java.util.Optional<java.lang.Object> value, java.util.Optional<java.util.List<AXRelatedNode>> relatedNodes, java.util.Optional<java.util.List<AXValueSource>> sources)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<java.util.List<AXRelatedNode>>
getRelatedNodes()
One or more related nodes, if applicable.java.util.Optional<java.util.List<AXValueSource>>
getSources()
The sources which contributed to the computation of this property.AXValueType
getType()
The type of this value.java.util.Optional<java.lang.Object>
getValue()
The computed value of this property.
-
-
-
Constructor Detail
-
AXValue
public AXValue(AXValueType type, java.util.Optional<java.lang.Object> value, java.util.Optional<java.util.List<AXRelatedNode>> relatedNodes, java.util.Optional<java.util.List<AXValueSource>> sources)
-
-
Method Detail
-
getType
public AXValueType getType()
The type of this value.
-
getValue
public java.util.Optional<java.lang.Object> getValue()
The computed value of this property.
-
getRelatedNodes
public java.util.Optional<java.util.List<AXRelatedNode>> getRelatedNodes()
One or more related nodes, if applicable.
-
getSources
public java.util.Optional<java.util.List<AXValueSource>> getSources()
The sources which contributed to the computation of this property.
-
-