pa11y VS Playwright

Compare pa11y vs Playwright and see what are their differences.

Playwright

Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API. (by microsoft)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
pa11y Playwright
21 381
3,958 61,799
0.7% 1.5%
5.8 9.9
14 days ago 5 days ago
JavaScript TypeScript
GNU Lesser General Public License v3.0 only Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

pa11y

Posts with mentions or reviews of pa11y. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-13.
  • 🤯 150 Articles to Satisfy Your Curiosity
    5 projects | dev.to | 13 Mar 2024
    Pa11y is your automated accessibility testing pal (https://pa11y.org/) by Rowan Manning
  • Scrollbars Are Becoming a Problem
    10 projects | news.ycombinator.com | 12 Oct 2023
    And educate himself just a tiny little bit? ;)

    Then in his next web project, he just might use https://github.com/pa11y/pa11y and make the world a better place!

  • Building Accessible Web Experiences: A Checklist for Frontend Developers
    1 project | dev.to | 17 Sep 2023
    Pages should have descriptive titles. Make use of tag. Not just for accessibility reasons, its one of the key tools to improve your SEO.
  • iFrames should have descriptive titles. iFrame is basically a page within a page, same rule applies for it too.
  • tag should have lang attribute. It helps screen readers to use correct pronunciation. If parts of your website use different languages, add lang attribute to respective elements as well.
  • Roles: ARIA roles define the type of element and its purpose. Roles can be used to indicate whether an element is a button, link, menu, dialog, or other interactive components. For example, role="button" can be added to a
    element to convey that it functions as a button.
  • Labels. Interactive elements should have accessible name inside aria-label
  • Element semantics should not be inappropriately suppressed with aria-hidden. Avoid hiding elements from accessibility tree; If required, use CSS styles to make element invisible by changing opacity or visibility.
  • Images should have alt attribute. Have you ever been stuck with slow connection and faced a white square wonder what's that supposed to be? Add an alt attribute so the images could be easily identified by text readers.
  • Useful tools

    Going through all those checkpoints might be overwhelming, and indeed, the larger your webpage or application is, the more effort it will take to find and address them.

    There are, luckily excellent tools that can jumpstart the process.

    • WAVE: A free online tool that provides visual feedback about the accessibility of your web content, highlighting potential issues and offering suggestions for improvement.
    • axe DevTools: An accessibility testing extension for Google Chrome and Firefox that can be used directly within the browser's developer tools.
    • Pa11y: An open-source automated accessibility testing tool that you can run from the command line or integrate into your CI/CD pipeline.
    • Lighthouse Accessibility Audit: Excellent for a quick accessibility insight, Lighthouse is available with Google Chrome dev tools and checks highlight opportunities to improve the accessibility of your web app.

    Remember that automated tools are valuable for identifying many common accessibility issues, but manual testing is often necessary to fully understand and address the user experience for people with disabilities. A combination of automated and manual testing, along with a commitment to ongoing accessibility, is key to maintaining an accessible web presence.

    Happy coding!

    Original post

  • Creating an Accessible Web for Everyone with Anuradha on Girl Code Coffee Chat #9
    1 project | dev.to | 6 Jul 2023
    Pa11y
  • Como adicionar recursos de acessibilidade em um site?
    2 projects | /r/brdev | 12 May 2023
  • Code optimisation for accessibility
    1 project | /r/GPT3 | 3 Apr 2023
  • Automated Accessibility Part 3: Regression Tests
    3 projects | dev.to | 6 Mar 2023
    Automated libraries such as axe-core and pA11y have been a very seamless way to bring accessibility testing into development teams UI testing. It can get development teams to begin to learn and grow accessibility in their teams. However, one big problem has appeared since the rise in popularity of these libraries.
  • Como vocĂŞs geram mĂ©tricas de acessibilidade?
    1 project | /r/brdev | 24 Feb 2023
  • A Practical Approach to Automated Accessibility
    4 projects | dev.to | 14 Feb 2023
    PA11y - It runs accessibility tests on your pages via the command line or Node.js, so you can automate your testing process
  • About a11y in general
    2 projects | dev.to | 21 Jan 2023
    https://github.com/pa11y/pa11y - Tool for testing ally using node.js (it also has integration with Cypress).

Playwright

Posts with mentions or reviews of Playwright. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-01.
  • Typed E2E test IDs
    2 projects | dev.to | 1 May 2024
    We start with a project that was bootstrapped with npx create-next-app. For the E2E test we use Playwright and set it up as described in the testing guide provided by Next.js.
  • Playwright Scraping infinite loading & pagination
    2 projects | dev.to | 1 May 2024
    Playwright is a powerful tool developed by Microsoft, it allows developers to write reliable end-to-end tests and perform browser automation tasks with ease. What sets Playwright apart is its ability to work seamlessly across multiple browsers (Chrome, Firefox, and WebKit), it provides a consistent and efficient way to interact with web pages, extract data, and automate repetitive tasks. Moreover, it supports various programming languages such as Node.js, Python, Java, and .NET, that’s making it a versatile choice for web scraping projects. Whether you're scraping public data for analysis, building a web crawler, or automating manual workflows, Playwright has you covered.
  • Sometimes things simply don't work
    3 projects | dev.to | 23 Apr 2024
    The consensus I could gather is either use playwright or use a workaround to solve it in the puppeteer layer. The root cause of the bug is a websocket size limitation on the CDP protocol for chromium.
  • The best testing strategies for frontends
    8 projects | dev.to | 22 Apr 2024
    With the advent of tools like Puppeteer and now Playwright, end-to-end testing has become much easier and more reliable. For anyone who's used Selenium in the past, you know what I'm talking about. Puppeteer has opened the way in terms of E2E tooling, but Playwright has taken it to the next level and made it easier to await for certain selectors or conditions to be fulfilled (via locators), thus making tests more reliable and less flaky. Also, it's a game changer that it introduced a test-runner - this made the integration between the headless browser and the actual test code much smoother.
  • Playwright Web Scraping 2024 - Tutorial
    1 project | dev.to | 18 Apr 2024
    In this tutorial, our main focus will be on Playwright web scraping. So what is Playwright? It’s a handy framework created by Microsoft. It's known for making web interactions more streamlined and works reliably with all the latest browsers like WebKit, Chromium, and Firefox. You can also run tests in headless or headed mode and emulate native mobile environments like Google Chrome for Android and Mobile Safari.
  • The best testing setup for frontends, with Playwright and NextJS
    5 projects | dev.to | 18 Apr 2024
    // playwright.config.ts import { defineConfig } from "@playwright/test"; /** * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ testDir: "./src/pages", reporter: "list", use: { baseURL: "http://localhost:5432/", }, timeout: process.env.CI ? 10000 : 4000, // ... more options });
  • ✍️Testing in Storybook
    1 project | dev.to | 18 Apr 2024
    Issues with Playwright
  • Episode 24/14: Angular Query, New Template Syntax
    1 project | dev.to | 16 Apr 2024
    Fast and reliable end-to-end testing for modern web apps | Playwright
  • Adding standalone or "one off" scripts to your Playwright suite
    1 project | dev.to | 8 Apr 2024
    This means you cannot place test files outside of this directory, which was brought up as a question on Github some time ago. Initially, I thought it would be nice to add another folder in the repo called "scripts", but Playwright does not allow multiple testDir values.
  • Learn Automated Testing At Home: A Beginner's Guide
    4 projects | dev.to | 4 Apr 2024
    4.Playwright: Playwright is a browser automation library by Microsoft. Key Features: Supports Chromium, Firefox, and WebKit. Provides cross-browser testing capabilities. Allows automating web, mobile, and desktop applications

What are some alternatives?

When comparing pa11y and Playwright you can also consider the following projects:

lighthouse-ci - Automate running Lighthouse for every commit, viewing the changes, and preventing regressions

WebdriverIO - Next-gen browser and mobile automation test framework for Node.js

axe-core - Accessibility engine for automated Web UI testing

undetected-chromedriver - Custom Selenium Chromedriver | Zero-Config | Passes ALL bot mitigation systems (like Distil / Imperva/ Datadadome / CloudFlare IUAM)

cypress-audit - ⚡ Run Lighthouse and Pa11y audits directly in your E2E test suites

TestCafe - A Node.js tool to automate end-to-end web testing.

pa11y-ci - Pa11y CI is a CI-centric accessibility test runner, built using Pa11y

nightwatch - Integrated end-to-end testing framework written in Node.js and using W3C Webdriver API. Developed at @browserstack

cypress-fail-fast - A Cypress plugin to skip tests on first failure.

Cypress - Fast, easy and reliable testing for anything that runs in a browser.

svelte-navigator - Simple, accessible routing for Svelte

playwright-python - Python version of the Playwright testing and automation library.