dequelabs / axe-cli

[Deprecated] A command-line interface for the aXe accessibility testing engine
Mozilla Public License 2.0
430 stars 44 forks source link

Issue with --include and --exclude. Lists entries need string delimiters #75

Closed benjiallen closed 5 years ago

benjiallen commented 5 years ago

Running version 3.0.0 on MacOS 10.2.6 using iTerm

I tried running the example for --include and --exclude flags and I received an error.

> axe www.deque.com --include #main --exclude #aside error: option -e, --exclude <list>' argument missing

The only way I could get the example working is by making the selectors strings.

axe www.deque.com --include '#main' --exclude '#aside'

I assume that this is either a bug with the code or the documentation.