Add accessibility testing commands (ax-tree, ax-find, ax-node)#3
Merged
Add accessibility testing commands (ax-tree, ax-find, ax-node)#3
Conversation
Three new commands exposing Chrome's Accessibility CDP domain: - ax-tree: dumps the full accessibility tree with indented text output - ax-find: queries nodes by accessible name and/or ARIA role - ax-node: shows accessibility properties for a CSS-selected element All commands support --json for machine-readable output. Includes Go test suite with httptest server and headless Chrome, covering tree formatting, node querying, property display, and edge cases (depth limits, ignored nodes, missing elements). https://claude.ai/code/session_013982JVUJZrJY1VSt96fkG2
Executable demo showing ax-tree, ax-find, and ax-node against a sample bookstore page with navigation, tables, forms, and disabled buttons. Includes a CI-style pipeline example checking that all buttons have accessible names. https://claude.ai/code/session_013982JVUJZrJY1VSt96fkG2
Owner Author
Add usage examples, command reference entries, and a CI scripting example for ax-tree, ax-find, and ax-node. https://claude.ai/code/session_013982JVUJZrJY1VSt96fkG2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Three new commands exposing Chrome's Accessibility CDP domain:
All commands support --json for machine-readable output.
Includes Go test suite with httptest server and headless Chrome,
covering tree formatting, node querying, property display, and
edge cases (depth limits, ignored nodes, missing elements).
https://claude.ai/code/session_013982JVUJZrJY1VSt96fkG2