Metadata
Title
Manual Testing
Category
undergraduate
UUID
7b63465203a548388429b113c5f5c2dd
Source URL
https://accessibility.web-resources.upenn.edu/testing-evaluating-accessibility/m...
Parent URL
https://accessibility.web-resources.upenn.edu/get-help
Crawl Time
2026-03-09T06:58:31+00:00
Rendered Raw Markdown
# Manual Testing

**Source**: https://accessibility.web-resources.upenn.edu/testing-evaluating-accessibility/manual-testing
**Parent**: https://accessibility.web-resources.upenn.edu/get-help

[Microsoft Accessibility Insights(link is external)](https://accessibilityinsights.io/) is a great tool that can assist you with manually testing your site.

## Use HTML elements correctly.

- **Use a [native element(link is external)](https://developer.mozilla.org/en-US/docs/Web/HTML/Element)** as opposed customizing or creating your own whenever possible.
  - HTML elements communicate specific roles and functionality, so overriding elements with ARIA or JS can lead to confusion and incompatibility with browsers and assistive technology.
  - For example, use <button> for mobile menu toggles, as opposed to a <div>, <span>, or <a> tag.
- **Review your site’s[accessibility tree(link is external)](https://developer.paciellogroup.com/blog/2015/01/the-browser-accessibility-tree/)** to make sure that assistive technology is able to interact with and interpret your site’s elements and functionality as intended.
- **Ensure valid HTML** using the [HTML Markup Validation Service(link is external)](https://validator.w3.org/).

## Ensure the structure of your webpages makes sense.

- **Utilize HTML landmarks to organize and section your content.** This will allow users to navigate your web page in an outline format, instead of linearly. These landmarks save users time and lets them skip to the section that they are looking for.
- **Review your page’s hierarchy** using the “Structure” tab in the [WAVE extension(link is external)](https://wave.webaim.org/extension/). Make sure there are no skipped heading levels.