Accessibility Testing

WAVE tool is a web accessibility evaluation tool – a toolbar for Firefox browser. It is important to note that, WAVE cannot tell you if your web content is accessible; only a human can determine true accessibility. But, WAVE can help you evaluate the accessibility of your web content.

All evaluation happens directly within the browser and no information is sent to WAVE servers. This ensures 100% private and secure accessibility reporting.

For downloading WAVE web accessibility toolbar go to http://wave.webaim.org/toolbar/ and download it in Firefox browser. Make sure you will open downloading URL in Firefox browser because WAVE toolbar only supports Firefox.

Using the WAVE Web Accessibility Toolbar

Following are the features we can use while working on the Firefox
browser.

#1) Select the website http://www.easports.com/, then click on the “Errors, Features, and Alerts”, you will find the page with accessibility alerts and errors in yellow color. Mouse over on the images to see the details of alerts.
(Note: click on any image for enlarged view)

#2) now clicks on “Structure/Order View”, you will get the page with Inline Frame details.

#3) now click on “Text-only View”, the site will display without images, styles, and layouts.

#4) “Outline View” icons on the toolbar will let you know if the headings are in order or not.

#5) The “Reset Page” icon will refresh the page.

#6) Clicking on “Disable style” will remove the CSS styles from the page.

#7) The “Icons Key” button will display a list of all WAVE icons with additional details, information, and recommendations.

You can also evaluate the accessibility of the website without downloading the wave tool and directly use it online.

Steps to verify the accessibility of the website:

Step #1)
Click on URL: http://wave.webaim.org/

Step #2)
Enter the Web page address in the text box and hit enter. We are going to use com as an example. Enter the site www.facebook.com in the text box and click on the enter button.

Step #3)
You will find summary details on the left-hand side of the navigation.

  • Errors would be displayed in red with a count. In my case, it’s showing as 13.
  • Alerts would be displayed in yellow with a count 13.
  • Features would be in green with a count 10.
  • Structural Elements would be 6 in blue color.
  • HTML5 and ARIA would be 15 in purple color.
  • Contrast Errors would be 14 in black color.

Clicking on each icon will give you more information about the elements as shown above for alert (in the center of the page).

Check this WAVE getting started video:

Now, let’s look at a different category of tools:
Free Web Page Accessibility Validators:

  • Cynthia Says
  • HTML-kit
  • FAE tool

Few more best Web Accessibility Checker Tools:

  • A Checker open source accessibility evaluation tool
  • PowerMapper
  • Accessibility Valet
  • EvalAccess
  • MAGENTA

Vision disability tools

Vision disability refers to a loss of vision. There are different kinds of Vision Disabilities:

  • Blindness
  • Low or restricted vision
  • Color blindness

Users with visual impairments use assistive technology software that reads content aloud. For Example JAWS for Window’s operating systems, NVDA for Window’s operating systems, Voice Over for Mac. UA user with weak vision can also make text larger with a browser setting or magnificent setting of the operating system. We are going to learn these features with the help of Magnifiers and JAWS tools.

A) Magnifiers

  • Zoom Text Magnifier enlarges everything on your computer screen and making application easy to see and use. You can download it from this link. To get a good idea of how this works, we highly recommend that you download a free trial version and experiment.
  • Window’s magnifier also enlarges different parts of the screen. We can open it by clicking on the Start button from your desktop and then type Magnifier. Click on the program Magnifier. When you mouse hover on the web page, this tool enlarges the size of the screen and displays.

  • Blind computer users, who cannot use a normal computer monitor, use refreshable Braille display or Braille terminal to read text output.
    According to Wikipedia, a refreshable Braille display or Braille terminal is an electro-mechanical device for displaying Braille characters, usually by means of round-tipped pins raised through holes in a flat surface.

JAWS- Job Access with Speech

JAWS is a screen reader used to test Web Pages on windows operating system that allows visually damaged users to read the screen. JAWS support all versions of operating systems as well as provide refreshable Braille display.

Following are Keyboard commands to use JAWS:

  • JAWS Web Page Commands
  • New JAWS Keystrokes

The basic functions that are tested with the help of JAWS are:

  • JAWS provide the number of keystrokes to navigate Web pages. For example Arrow keys, Page Up and Down keys, Home, End, and several other JAWS navigation keys.
  • Links, images, and image maps: JAWS provides keystrokes to navigate from one link to another in the Web page.
  • HTML Form fields and controls: JAWS provides keystrokes to navigate between form elements
  • HTML Frames: Navigate frames with the keyboard.
  • Tables: Navigate table cells

This being a brief overview of the different techniques and tools that are used to accomplish the evaluation of accessibility.

Accessibility points for Developers & Testers

  • Do all active images have alt-text that indicates what the link or button does?
  • Do all decorative images & redundant images have null ( alt=””) alt text?
  • Do all information images have alt-text that provides the same information that the images provided?
  • Is the page organized with headings? Are they marked as headings?
  • Can you access everything using the keyboard?
  • Will your page be read in a logical order in a screen reader?
  • Is it clear what element is in focus while you use the keyboard access? Is all of the important information in the video available through standard audio or through added audio description?

The development team can make sure that their product is accessibility compliant by code inspection and Unit testing.

Typical test cases for accessibility testing:

  • Make sure that all functions are available via keyboard only (do not use the mouse)
  • Make sure that information is visible when the display setting is changed to High Contrast modes.
  • Make sure that screen reading tools can read all the text available and every picture/Image have corresponding alternate text associated with it.
  • Make sure that product defined keyboard actions do not affect accessibility keyboard shortcuts.

Was this article helpful?

Related Articles