Class AXValueSource
java.lang.Object
org.openqa.selenium.devtools.v119.accessibility.model.AXValueSource
A single source for a computed AX property.
-
Constructor Summary
ConstructorDescriptionAXValueSource
(AXValueSourceType type, Optional<AXValue> value, Optional<String> attribute, Optional<AXValue> attributeValue, Optional<Boolean> superseded, Optional<AXValueNativeSourceType> nativeSource, Optional<AXValue> nativeSourceValue, Optional<Boolean> invalid, Optional<String> invalidReason) -
Method Summary
Modifier and TypeMethodDescriptionThe name of the relevant attribute, if any.The value of the relevant attribute, if any.Whether the value for this property is invalid.Reason for the value being invalid, if it is.The native markup source for this value, e.g.The value, such as a node or node list, of the native source.Whether this source is superseded by a higher priority source.getType()
What type of source this is.getValue()
The value of this property source.
-
Constructor Details
-
AXValueSource
public AXValueSource(AXValueSourceType type, Optional<AXValue> value, Optional<String> attribute, Optional<AXValue> attributeValue, Optional<Boolean> superseded, Optional<AXValueNativeSourceType> nativeSource, Optional<AXValue> nativeSourceValue, Optional<Boolean> invalid, Optional<String> invalidReason)
-
-
Method Details
-
getType
What type of source this is. -
getValue
The value of this property source. -
getAttribute
The name of the relevant attribute, if any. -
getAttributeValue
The value of the relevant attribute, if any. -
getSuperseded
Whether this source is superseded by a higher priority source. -
getNativeSource
The native markup source for this value, e.g. a ` -
getNativeSourceValue
The value, such as a node or node list, of the native source. -
getInvalid
Whether the value for this property is invalid. -
getInvalidReason
Reason for the value being invalid, if it is.
-