guidepup VS equal-access

Compare guidepup vs equal-access and see what are their differences.

equal-access

IBM Equal Access Accessibility Checker contains tools to automate accessibility checking from a browser or in a continuous development/build environment (by IBMa)
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
guidepup equal-access
5 1
389 610
4.1% 0.8%
8.0 9.8
2 months ago 4 days ago
TypeScript JavaScript
MIT License 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.

guidepup

Posts with mentions or reviews of guidepup. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-21.
  • Screen reader driver for test automation (VoiceOver & NVDA)
    2 projects | /r/npm | 21 May 2023
  • A11y Unlocked: Screen-Reader Automation Tests
    3 projects | dev.to | 16 Oct 2022
    // We use a special test instance from the Guidepup package // that gives us access to VoiceOver! import { voTest as test } from "@guidepup/playwright"; import { expect } from "@playwright/test"; // The test setup is exactly the same as normal for // Playwright, expect we now get a `voiceOver` object as well // as the `page` object! test.describe("Playwright VoiceOver", () => { test("I can navigate the Guidepup Github page", async ({ page, voiceOver, }) => { // Let's navigate to Guidepup GitHub page and wait for // page to be ready, nothing special here! await page.goto("https://github.com/guidepup/guidepup", { waitUntil: "domcontentloaded", }); await expect( page.locator('header[role="banner"]') ).toBeVisible(); // This is where things start to get awesome! Let's tell // VoiceOver to interact with the main page content, just // the same as you would when use VoiceOver normally. await voiceOver.interact(); // Let's do something a lil more exciting - move across // the page's headings until we reach the main Guidepup // repo title in the README using VoiceOver! while ((await voiceOver.itemText()) !== "Guidepup heading level 1") { await voiceOver.perform( voiceOver.keyboard.commands.findNextHeading ); } });
  • A11y Testing: Automating ScreenReaders
    9 projects | dev.to | 30 Dec 2021
    View on GitHub
  • Automate VoiceOver being controlled by AppleScript
    1 project | /r/applescript | 19 Dec 2021
    End goal, having successfully found a way to program the ticking of this checkbox, is to build a library so folks can test their websites with screen readers in CI (ref: https://github.com/guidepup/guidepup).

equal-access

Posts with mentions or reviews of equal-access. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-03-21.

What are some alternatives?

When comparing guidepup and equal-access you can also consider the following projects:

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

bootstrap-vue - BootstrapVue provides one of the most comprehensive implementations of Bootstrap v4 for Vue.js. With extensive and automated WAI-ARIA accessibility markup.

audit-a11y - audit websites for accessibility issues

jless - jless is a command-line JSON viewer designed for reading, exploring, and searching through JSON data.

web-test-runner-voiceover - A small plugin for @web/test-runner that uses VoiceOver on Mac for integrated a11y screen reader testing.

playball - Watch MLB games from the comfort of your own terminal

Playwright - Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API.

guidepup-playwright - Screen reader driver for Playwright tests.

screenreaders - Screen reader automation tools by AccessLint, including VoiceOver.js and Auto-VO

screen-reader-reader - A general purpose screen reader reader

axe-core - Accessibility engine for automated Web UI testing

setup - Setup your environment for screen reader test automation.