Scrump31 / workshop-automated-a11y-testing

Materials for the Automated Accessibility Testing workshop

Home Page:workshop-automated-a11y-testing.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

✨ Testing Accessibility with Marcy Sutton ✨

Testing Accessibility: Automated Testing by Marcy Sutton

Building accessible web applications with HTML, CSS, JavaScript, and React

Ensuring your frontend code is accessible requires consistent development effort and testing of inclusive markup and scripted interactions. In this workshop we’ll test an accessible web application using widely supported and proven tools and techniques. We’ll cover everything about building accessible frontend applications, from the absolute basics with HTML and CSS to the tricky parts you’ll run into building and testing JavaScript-heavy components.


GPL 3.0 License Code of Conduct Gitpod Ready-to-Code

Prerequisites

  • This workshop is intended for intermediate to advanced web developers and testers.
  • Experience with HTML, CSS, and JavaScript will be necessary. Experience with React will be helpful.

Options for working with this material

  • Browser-based setup with GitPod
    • GitPod provides a cloud-based development environment similar to VS Code
    • Requires a login with Github
    • Note: GitPod may have accessibility issues
  • Download a zip file for local setup
  • Clone this Git repo for local setup (see instructions below)

System Requirements for Local Setup

All of these must be available in your PATH. To verify things are set up properly, you can run this:

git --version
node --version
yarn --version

If you have trouble with any of these, learn more about the PATH environment variable and how to fix it here for windows or mac/linux.

Setup

If you want to commit and push your work as you go, you’ll want to fork first and then clone your fork rather than this repo directly. Be sure to fetch the latest code on the day of the workshop by syncing your fork.

After you’ve made sure to have the pre-requisites installed, you should be able to run a few commands to get set up:

git clone https://github.com/testing-accessibility/workshop-automated-a11y-testing.git
cd workshop-automated-a11y-testing
yarn

There may be periodic changes to this repo. To update your local build, run:

git pull

Note: if you have local changes, you'll need to commit them to a branch. Here's some extra help on using Git: [https://www.freecodecamp.org/news/git-pull-explained/]

If you get any errors when building the site, please read through them and see if you can find out what the problem is. If you can’t work it out on your own then please file an issue and provide all the output from the commands you ran (even if it’s a lot).

Running the project locally

This repo contains various workshop files and a React web application. To get the app up and running (and really see if it worked) with Parcel, run this command from the project’s root folder:

yarn start

This should start the site for your browser at the address indicated in your Terminal: http://localhost:1234

You can also view a deployed version: https://workshop-automated-a11y-testing.testingaccessibility.com/

Working through the exercises

In this workshop, we get more advanced with a React web application built out of the same monorepo. There are folders for each of the sections and the build will already be set up with the required tooling.

The URL is: http://localhost:1234/

Windows note: Jest and Puppeteer are not working on WSL for Workshop 2. This may be fixed at some point in the future, but consider it a heads up.

This structure will allow you to iterate on working files with separate directories for the example sections.

The purpose of an exercise is not for you to work through all the material. It’s intended to get your brain thinking about the right questions to ask as we go through the material together.

Contributions of any kind are welcome!

Workshop Resources

Links from this and all of the Testing Accessibility workshops have been compiled on a resources page: https://workshop-resources.testingaccessibility.com/#workshops-testing

About

Materials for the Automated Accessibility Testing workshop

workshop-automated-a11y-testing.vercel.app

License:Other


Languages

Language:JavaScript 70.6%Language:SCSS 29.2%Language:HTML 0.2%