You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 years ago | |
---|---|---|
README.md | 3 years ago | |
aah.py | 3 years ago |
README.md
AAH
aah is an accessibility helper for site auditing. It will create an html document displaying elements on the original page using the following attributes: role
, tabindex
, and any aria
attributes. In addition it will visually show every image and its associated alt text. It will attempt to find background images as well.
Opperation
aah [flag(s)] input_address output_address
-f
is a flag that can be passed to pass a local file as an input address rather than than a url
input_address
is a url or, in the event of the -f
flag, a local path to an html file
output_address
is a path to the preferred output file. Should end in .html
Example:
aah https://duckduckgo.com ~/Desktop/ddg_aah_test.html
Dependencies
Python 3 is required. One external dependency, bs4
, is also required and can be acquired however you like. The easiest being pip3 install bs4