--- sidebar_label: SerializedAXNode --- # SerializedAXNode interface Represents a Node and the properties of it that are relevant to Accessibility. **Signature:** ```typescript export interface SerializedAXNode ``` ## Properties | Property | Modifiers | Type | Description | | ------------------------------------------------------------------- | --------- | ------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | | [autocomplete?](./puppeteer.serializedaxnode.autocomplete.md) | | string | (Optional) | | [checked?](./puppeteer.serializedaxnode.checked.md) | | boolean \| 'mixed' | (Optional) Whether the checkbox is checked, or in a [mixed state](https://www.w3.org/TR/wai-aria-practices/examples/checkbox/checkbox-2/checkbox-2.html). | | [children?](./puppeteer.serializedaxnode.children.md) | | [SerializedAXNode](./puppeteer.serializedaxnode.md)\[\] | (Optional) Children of this node, if there are any. | | [description?](./puppeteer.serializedaxnode.description.md) | | string | (Optional) An additional human readable description of the node. | | [disabled?](./puppeteer.serializedaxnode.disabled.md) | | boolean | (Optional) | | [expanded?](./puppeteer.serializedaxnode.expanded.md) | | boolean | (Optional) | | [focused?](./puppeteer.serializedaxnode.focused.md) | | boolean | (Optional) | | [haspopup?](./puppeteer.serializedaxnode.haspopup.md) | | string | (Optional) | | [invalid?](./puppeteer.serializedaxnode.invalid.md) | | string | (Optional) Whether and in what way this node's value is invalid. | | [keyshortcuts?](./puppeteer.serializedaxnode.keyshortcuts.md) | | string | (Optional) Any keyboard shortcuts associated with this node. | | [level?](./puppeteer.serializedaxnode.level.md) | | number | (Optional) The level of a heading. | | [modal?](./puppeteer.serializedaxnode.modal.md) | | boolean | (Optional) | | [multiline?](./puppeteer.serializedaxnode.multiline.md) | | boolean | (Optional) | | [multiselectable?](./puppeteer.serializedaxnode.multiselectable.md) | | boolean | (Optional) Whether more than one child can be selected. | | [name?](./puppeteer.serializedaxnode.name.md) | | string | (Optional) A human readable name for the node. | | [orientation?](./puppeteer.serializedaxnode.orientation.md) | | string | (Optional) | | [pressed?](./puppeteer.serializedaxnode.pressed.md) | | boolean \| 'mixed' | (Optional) Whether the node is checked or in a mixed state. | | [readonly?](./puppeteer.serializedaxnode.readonly.md) | | boolean | (Optional) | | [required?](./puppeteer.serializedaxnode.required.md) | | boolean | (Optional) | | [role](./puppeteer.serializedaxnode.role.md) | | string | The [role](https://www.w3.org/TR/wai-aria/#usage_intro) of the node. | | [roledescription?](./puppeteer.serializedaxnode.roledescription.md) | | string | (Optional) A human readable alternative to the role. | | [selected?](./puppeteer.serializedaxnode.selected.md) | | boolean | (Optional) | | [value?](./puppeteer.serializedaxnode.value.md) | | string \| number | (Optional) The current value of the node. | | [valuemax?](./puppeteer.serializedaxnode.valuemax.md) | | number | (Optional) | | [valuemin?](./puppeteer.serializedaxnode.valuemin.md) | | number | (Optional) | | [valuetext?](./puppeteer.serializedaxnode.valuetext.md) | | string | (Optional) A description of the current value. |