# DO NOT EDIT THIS FILE! # # This file is generated from the CDP specification. If you need to make # changes, edit the generator and regenerate all of the modules. # # CDP domain: Accessibility (experimental) from __future__ import annotations from .util import event_class, T_JSON_DICT from dataclasses import dataclass import enum import typing from . import dom from . import page from . import runtime class AXNodeId(str): ''' Unique accessibility node identifier. ''' def to_json(self) -> str: return self @classmethod def from_json(cls, json: str) -> AXNodeId: return cls(json) def __repr__(self): return 'AXNodeId({})'.format(super().__repr__()) class AXValueType(enum.Enum): ''' Enum of possible property types. ''' BOOLEAN = "boolean" TRISTATE = "tristate" BOOLEAN_OR_UNDEFINED = "booleanOrUndefined" IDREF = "idref" IDREF_LIST = "idrefList" INTEGER = "integer" NODE = "node" NODE_LIST = "nodeList" NUMBER = "number" STRING = "string" COMPUTED_STRING = "computedString" TOKEN = "token" TOKEN_LIST = "tokenList" DOM_RELATION = "domRelation" ROLE = "role" INTERNAL_ROLE = "internalRole" VALUE_UNDEFINED = "valueUndefined" def to_json(self): return self.value @classmethod def from_json(cls, json): return cls(json) class AXValueSourceType(enum.Enum): ''' Enum of possible property sources. ''' ATTRIBUTE = "attribute" IMPLICIT = "implicit" STYLE = "style" CONTENTS = "contents" PLACEHOLDER = "placeholder" RELATED_ELEMENT = "relatedElement" def to_json(self): return self.value @classmethod def from_json(cls, json): return cls(json) class AXValueNativeSourceType(enum.Enum): ''' Enum of possible native property sources (as a subtype of a particular AXValueSourceType). ''' DESCRIPTION = "description" FIGCAPTION = "figcaption" LABEL = "label" LABELFOR = "labelfor" LABELWRAPPED = "labelwrapped" LEGEND = "legend" RUBYANNOTATION = "rubyannotation" TABLECAPTION = "tablecaption" TITLE = "title" OTHER = "other" def to_json(self): return self.value @classmethod def from_json(cls, json): return cls(json) @dataclass class AXValueSource: ''' A single source for a computed AX property. ''' #: What type of source this is. type_: AXValueSourceType #: The value of this property source. value: typing.Optional[AXValue] = None #: The name of the relevant attribute, if any. attribute: typing.Optional[str] = None #: The value of the relevant attribute, if any. attribute_value: typing.Optional[AXValue] = None #: Whether this source is superseded by a higher priority source. superseded: typing.Optional[bool] = None #: The native markup source for this value, e.g. a