puppeteer/src/common/Accessibility.ts

572 lines
16 KiB
TypeScript
Raw Normal View History

/**
* Copyright 2018 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the 'License');
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an 'AS IS' BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {Protocol} from 'devtools-protocol';
2022-06-23 09:31:43 +00:00
import {CDPSession} from './Connection.js';
import {ElementHandle} from './ElementHandle.js';
/**
* Represents a Node and the properties of it that are relevant to Accessibility.
* @public
*/
export interface SerializedAXNode {
/**
* The {@link https://www.w3.org/TR/wai-aria/#usage_intro | role} of the node.
*/
role: string;
/**
* A human readable name for the node.
*/
name?: string;
/**
* The current value of the node.
*/
2020-05-07 10:54:55 +00:00
value?: string | number;
/**
* An additional human readable description of the node.
*/
description?: string;
/**
* Any keyboard shortcuts associated with this node.
*/
keyshortcuts?: string;
/**
* A human readable alternative to the role.
*/
roledescription?: string;
/**
* A description of the current value.
*/
valuetext?: string;
disabled?: boolean;
expanded?: boolean;
focused?: boolean;
modal?: boolean;
multiline?: boolean;
/**
* Whether more than one child can be selected.
*/
multiselectable?: boolean;
readonly?: boolean;
required?: boolean;
selected?: boolean;
/**
* Whether the checkbox is checked, or in a
* {@link https://www.w3.org/TR/wai-aria-practices/examples/checkbox/checkbox-2/checkbox-2.html | mixed state}.
*/
2020-05-07 10:54:55 +00:00
checked?: boolean | 'mixed';
/**
* Whether the node is checked or in a mixed state.
*/
2020-05-07 10:54:55 +00:00
pressed?: boolean | 'mixed';
/**
* The level of a heading.
*/
level?: number;
valuemin?: number;
valuemax?: number;
autocomplete?: string;
haspopup?: string;
/**
* Whether and in what way this node's value is invalid.
*/
invalid?: string;
orientation?: string;
/**
* Children of this node, if there are any.
*/
children?: SerializedAXNode[];
}
/**
* @public
*/
export interface SnapshotOptions {
/**
* Prune uninteresting nodes from the tree.
* @defaultValue true
*/
interestingOnly?: boolean;
/**
* Root node to get the accessibility tree for
* @defaultValue The root node of the entire page.
*/
root?: ElementHandle<Node>;
}
/**
* The Accessibility class provides methods for inspecting Chromium's
* accessibility tree. The accessibility tree is used by assistive technology
* such as {@link https://en.wikipedia.org/wiki/Screen_reader | screen readers} or
* {@link https://en.wikipedia.org/wiki/Switch_access | switches}.
*
* @remarks
*
* Accessibility is a very platform-specific thing. On different platforms,
* there are different screen readers that might have wildly different output.
*
* Blink - Chrome's rendering engine - has a concept of "accessibility tree",
* which is then translated into different platform-specific APIs. Accessibility
* namespace gives users access to the Blink Accessibility Tree.
*
* Most of the accessibility tree gets filtered out when converting from Blink
* AX Tree to Platform-specific AX-Tree or by assistive technologies themselves.
* By default, Puppeteer tries to approximate this filtering, exposing only
* the "interesting" nodes of the tree.
*
* @public
*/
export class Accessibility {
2022-06-13 09:16:25 +00:00
#client: CDPSession;
/**
* @internal
*/
constructor(client: CDPSession) {
2022-06-13 09:16:25 +00:00
this.#client = client;
}
/**
* Captures the current state of the accessibility tree.
* The returned object represents the root accessible node of the page.
*
* @remarks
*
* **NOTE** The Chromium accessibility tree contains nodes that go unused on
* most platforms and by most screen readers. Puppeteer will discard them as
* well for an easier to process tree, unless `interestingOnly` is set to
* `false`.
*
* @example
* An example of dumping the entire accessibility tree:
2022-07-01 11:52:39 +00:00
* ```ts
* const snapshot = await page.accessibility.snapshot();
* console.log(snapshot);
* ```
*
* @example
* An example of logging the focused node's name:
2022-07-01 11:52:39 +00:00
* ```ts
* const snapshot = await page.accessibility.snapshot();
* const node = findFocusedNode(snapshot);
* console.log(node && node.name);
*
* function findFocusedNode(node) {
* if (node.focused)
* return node;
* for (const child of node.children || []) {
* const foundNode = findFocusedNode(child);
* return foundNode;
* }
* return null;
* }
* ```
*
* @returns An AXNode object representing the snapshot.
*/
public async snapshot(
options: SnapshotOptions = {}
2022-05-31 14:34:16 +00:00
): Promise<SerializedAXNode | null> {
const {interestingOnly = true, root = null} = options;
const {nodes} = await this.#client.send('Accessibility.getFullAXTree');
2022-05-31 14:34:16 +00:00
let backendNodeId: number | undefined;
if (root) {
const {node} = await this.#client.send('DOM.describeNode', {
2020-05-07 10:54:55 +00:00
objectId: root._remoteObject.objectId,
});
backendNodeId = node.backendNodeId;
}
const defaultRoot = AXNode.createTree(nodes);
2022-05-31 14:34:16 +00:00
let needle: AXNode | null = defaultRoot;
if (backendNodeId) {
needle = defaultRoot.find(node => {
return node.payload.backendDOMNodeId === backendNodeId;
});
2022-06-14 11:55:35 +00:00
if (!needle) {
return null;
}
}
if (!interestingOnly) {
return this.serializeTree(needle)[0] ?? null;
}
const interestingNodes = new Set<AXNode>();
this.collectInterestingNodes(interestingNodes, defaultRoot, false);
2022-06-14 11:55:35 +00:00
if (!interestingNodes.has(needle)) {
return null;
}
2022-05-31 14:34:16 +00:00
return this.serializeTree(needle, interestingNodes)[0] ?? null;
}
private serializeTree(
node: AXNode,
interestingNodes?: Set<AXNode>
): SerializedAXNode[] {
const children: SerializedAXNode[] = [];
2022-06-14 11:55:35 +00:00
for (const child of node.children) {
children.push(...this.serializeTree(child, interestingNodes));
2022-06-14 11:55:35 +00:00
}
2022-06-14 11:55:35 +00:00
if (interestingNodes && !interestingNodes.has(node)) {
return children;
}
const serializedNode = node.serialize();
2022-06-14 11:55:35 +00:00
if (children.length) {
serializedNode.children = children;
}
return [serializedNode];
}
private collectInterestingNodes(
collection: Set<AXNode>,
node: AXNode,
insideControl: boolean
): void {
2022-06-14 11:55:35 +00:00
if (node.isInteresting(insideControl)) {
collection.add(node);
}
if (node.isLeafNode()) {
return;
}
insideControl = insideControl || node.isControl();
2022-06-14 11:55:35 +00:00
for (const child of node.children) {
this.collectInterestingNodes(collection, child, insideControl);
2022-06-14 11:55:35 +00:00
}
}
}
class AXNode {
public payload: Protocol.Accessibility.AXNode;
public children: AXNode[] = [];
2022-06-13 09:16:25 +00:00
#richlyEditable = false;
#editable = false;
#focusable = false;
#hidden = false;
#name: string;
#role: string;
#ignored: boolean;
#cachedHasFocusableChild?: boolean;
constructor(payload: Protocol.Accessibility.AXNode) {
this.payload = payload;
2022-06-13 09:16:25 +00:00
this.#name = this.payload.name ? this.payload.name.value : '';
this.#role = this.payload.role ? this.payload.role.value : 'Unknown';
this.#ignored = this.payload.ignored;
for (const property of this.payload.properties || []) {
if (property.name === 'editable') {
2022-06-13 09:16:25 +00:00
this.#richlyEditable = property.value.value === 'richtext';
this.#editable = true;
}
2022-06-14 11:55:35 +00:00
if (property.name === 'focusable') {
this.#focusable = property.value.value;
}
if (property.name === 'hidden') {
this.#hidden = property.value.value;
}
}
}
2022-06-13 09:16:25 +00:00
#isPlainTextField(): boolean {
2022-06-14 11:55:35 +00:00
if (this.#richlyEditable) {
return false;
}
if (this.#editable) {
return true;
}
2022-06-13 09:16:25 +00:00
return this.#role === 'textbox' || this.#role === 'searchbox';
}
2022-06-13 09:16:25 +00:00
#isTextOnlyObject(): boolean {
const role = this.#role;
2020-05-07 10:54:55 +00:00
return role === 'LineBreak' || role === 'text' || role === 'InlineTextBox';
}
2022-06-13 09:16:25 +00:00
#hasFocusableChild(): boolean {
if (this.#cachedHasFocusableChild === undefined) {
this.#cachedHasFocusableChild = false;
for (const child of this.children) {
2022-06-13 09:16:25 +00:00
if (child.#focusable || child.#hasFocusableChild()) {
this.#cachedHasFocusableChild = true;
break;
}
}
}
2022-06-13 09:16:25 +00:00
return this.#cachedHasFocusableChild;
}
public find(predicate: (x: AXNode) => boolean): AXNode | null {
2022-06-14 11:55:35 +00:00
if (predicate(this)) {
return this;
}
for (const child of this.children) {
const result = child.find(predicate);
2022-06-14 11:55:35 +00:00
if (result) {
return result;
}
}
return null;
}
public isLeafNode(): boolean {
2022-06-14 11:55:35 +00:00
if (!this.children.length) {
return true;
}
// These types of objects may have children that we use as internal
// implementation details, but we want to expose them as leaves to platform
// accessibility APIs because screen readers might be confused if they find
// any children.
2022-06-14 11:55:35 +00:00
if (this.#isPlainTextField() || this.#isTextOnlyObject()) {
return true;
}
// Roles whose children are only presentational according to the ARIA and
// HTML5 Specs should be hidden from screen readers.
// (Note that whilst ARIA buttons can have only presentational children, HTML5
// buttons are allowed to have content.)
2022-06-13 09:16:25 +00:00
switch (this.#role) {
case 'doc-cover':
case 'graphics-symbol':
case 'img':
case 'Meter':
case 'scrollbar':
case 'slider':
case 'separator':
case 'progressbar':
return true;
default:
break;
}
// Here and below: Android heuristics
2022-06-14 11:55:35 +00:00
if (this.#hasFocusableChild()) {
return false;
}
if (this.#focusable && this.#name) {
return true;
}
if (this.#role === 'heading' && this.#name) {
return true;
}
return false;
}
public isControl(): boolean {
2022-06-13 09:16:25 +00:00
switch (this.#role) {
case 'button':
case 'checkbox':
case 'ColorWell':
case 'combobox':
case 'DisclosureTriangle':
case 'listbox':
case 'menu':
case 'menubar':
case 'menuitem':
case 'menuitemcheckbox':
case 'menuitemradio':
case 'radio':
case 'scrollbar':
case 'searchbox':
case 'slider':
case 'spinbutton':
case 'switch':
case 'tab':
case 'textbox':
case 'tree':
case 'treeitem':
return true;
default:
return false;
}
}
public isInteresting(insideControl: boolean): boolean {
2022-06-13 09:16:25 +00:00
const role = this.#role;
2022-06-14 11:55:35 +00:00
if (role === 'Ignored' || this.#hidden || this.#ignored) {
return false;
}
2022-06-14 11:55:35 +00:00
if (this.#focusable || this.#richlyEditable) {
return true;
}
// If it's not focusable but has a control role, then it's interesting.
2022-06-14 11:55:35 +00:00
if (this.isControl()) {
return true;
}
// A non focusable child of a control is not interesting
2022-06-14 11:55:35 +00:00
if (insideControl) {
return false;
}
2022-06-13 09:16:25 +00:00
return this.isLeafNode() && !!this.#name;
}
public serialize(): SerializedAXNode {
2020-05-07 10:54:55 +00:00
const properties = new Map<string, number | string | boolean>();
2022-06-14 11:55:35 +00:00
for (const property of this.payload.properties || []) {
properties.set(property.name.toLowerCase(), property.value.value);
2022-06-14 11:55:35 +00:00
}
if (this.payload.name) {
properties.set('name', this.payload.name.value);
}
if (this.payload.value) {
properties.set('value', this.payload.value.value);
}
if (this.payload.description) {
properties.set('description', this.payload.description.value);
2022-06-14 11:55:35 +00:00
}
const node: SerializedAXNode = {
2022-06-13 09:16:25 +00:00
role: this.#role,
};
2020-05-07 10:54:55 +00:00
type UserStringProperty =
| 'name'
| 'value'
| 'description'
| 'keyshortcuts'
| 'roledescription'
| 'valuetext';
const userStringProperties: UserStringProperty[] = [
'name',
'value',
'description',
'keyshortcuts',
'roledescription',
'valuetext',
];
const getUserStringPropertyValue = (key: UserStringProperty): string => {
return properties.get(key) as string;
};
for (const userStringProperty of userStringProperties) {
2022-06-14 11:55:35 +00:00
if (!properties.has(userStringProperty)) {
continue;
}
node[userStringProperty] = getUserStringPropertyValue(userStringProperty);
}
2020-05-07 10:54:55 +00:00
type BooleanProperty =
| 'disabled'
| 'expanded'
| 'focused'
| 'modal'
| 'multiline'
| 'multiselectable'
| 'readonly'
| 'required'
| 'selected';
const booleanProperties: BooleanProperty[] = [
'disabled',
'expanded',
'focused',
'modal',
'multiline',
'multiselectable',
'readonly',
'required',
'selected',
];
const getBooleanPropertyValue = (key: BooleanProperty): boolean => {
return properties.get(key) as boolean;
};
for (const booleanProperty of booleanProperties) {
// RootWebArea's treat focus differently than other nodes. They report whether
// their frame has focus, not whether focus is specifically on the root
// node.
2022-06-14 11:55:35 +00:00
if (booleanProperty === 'focused' && this.#role === 'RootWebArea') {
continue;
2022-06-14 11:55:35 +00:00
}
const value = getBooleanPropertyValue(booleanProperty);
2022-06-14 11:55:35 +00:00
if (!value) {
continue;
}
node[booleanProperty] = getBooleanPropertyValue(booleanProperty);
}
2020-05-07 10:54:55 +00:00
type TristateProperty = 'checked' | 'pressed';
const tristateProperties: TristateProperty[] = ['checked', 'pressed'];
for (const tristateProperty of tristateProperties) {
2022-06-14 11:55:35 +00:00
if (!properties.has(tristateProperty)) {
continue;
}
const value = properties.get(tristateProperty);
2020-05-07 10:54:55 +00:00
node[tristateProperty] =
value === 'mixed' ? 'mixed' : value === 'true' ? true : false;
}
2020-05-07 10:54:55 +00:00
type NumbericalProperty = 'level' | 'valuemax' | 'valuemin';
const numericalProperties: NumbericalProperty[] = [
'level',
'valuemax',
'valuemin',
];
const getNumericalPropertyValue = (key: NumbericalProperty): number => {
return properties.get(key) as number;
};
for (const numericalProperty of numericalProperties) {
2022-06-14 11:55:35 +00:00
if (!properties.has(numericalProperty)) {
continue;
}
node[numericalProperty] = getNumericalPropertyValue(numericalProperty);
}
2020-05-07 10:54:55 +00:00
type TokenProperty =
| 'autocomplete'
| 'haspopup'
| 'invalid'
| 'orientation';
const tokenProperties: TokenProperty[] = [
'autocomplete',
'haspopup',
'invalid',
'orientation',
];
const getTokenPropertyValue = (key: TokenProperty): string => {
return properties.get(key) as string;
};
for (const tokenProperty of tokenProperties) {
const value = getTokenPropertyValue(tokenProperty);
2022-06-14 11:55:35 +00:00
if (!value || value === 'false') {
continue;
}
node[tokenProperty] = getTokenPropertyValue(tokenProperty);
}
return node;
}
public static createTree(payloads: Protocol.Accessibility.AXNode[]): AXNode {
const nodeById = new Map<string, AXNode>();
2022-06-14 11:55:35 +00:00
for (const payload of payloads) {
nodeById.set(payload.nodeId, new AXNode(payload));
2022-06-14 11:55:35 +00:00
}
for (const node of nodeById.values()) {
2022-06-14 11:55:35 +00:00
for (const childId of node.payload.childIds || []) {
2022-05-31 14:34:16 +00:00
node.children.push(nodeById.get(childId)!);
2022-06-14 11:55:35 +00:00
}
}
return nodeById.values().next().value;
}
}