paypal / AATT

Automated Accessibility Testing Tool
BSD 3-Clause "New" or "Revised" License
602 stars 106 forks source link

How to start using AATT? #22

Closed jitendra82 closed 7 years ago

jitendra82 commented 7 years ago

Actually i have installed Node js and git utility, what is next action for start testing?

mpnkhan commented 7 years ago

$ git clone https://github.com/paypal/AATT.git $ cd AATT

Building and Running

$ sudo npm install $ git submodule init $ git submodule update $ DEBUG=AATT* http_port=3000 node app.js localhost:3000 should work.

RBroden commented 7 years ago

I am running on Windows and get an error with DEBUG=AATT* http_port=3000 node app.js I have Node and Git installed. I'm setting up a Linux VM now to see if I will have any better luck. Does this work in Windows?

MBeshai commented 6 years ago

Incase anyone else comes across this issue on windows :

You have to set the environmental variables first so use this command before the regular debug:

Set DEBUG=AATT* http_port=3000 node app.js

Then run the command again:

DEBUG=AATT* http_port=3000 node app.js