testing-library-docs VS axe-core

Compare testing-library-docs vs axe-core and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
testing-library-docs axe-core
44 74
438 5,623
-0.9% 1.5%
8.5 9.0
3 days ago 7 days ago
JavaScript JavaScript
MIT License Mozilla Public 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.

testing-library-docs

Posts with mentions or reviews of testing-library-docs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-22.
  • Introdução a testes unitários no desenvolvimento de software
    2 projects | dev.to | 22 Mar 2024
  • 33 React Libraries Every React Developer Should Have In Their Arsenal
    10 projects | dev.to | 7 Jan 2024
    18.react-testing-library
  • What is integration testing in UI/Front End?
    2 projects | dev.to | 7 Jan 2024
    Jest has long been my favorite got to test runner when it comes to UI unit and integration testing. With tools like React Testing Library (Testing Library framework for React) you get the benefit of very easy to write and maintain tests, as well as a quick and efficient way to run our tests.
  • Testing Intercepting Routes
    1 project | /r/nextjs | 11 Nov 2023
    I'm writing an intergration test with Testing Library where I'm on a boards dashboard area and a user can click a button to create an item on the board. I'm using an intercepting route to do show the popup form. Once finished the user goes back to their area and should see the created board.
  • Writing your first Unit Test in React
    2 projects | dev.to | 2 Nov 2023
    This article uses Jest and React Testing Library. It's okay if you want to use other libraries, the fundamentals in this article will help you there as well.
  • Autotab – Boring AI Agents for real world tasks
    10 projects | news.ycombinator.com | 19 Oct 2023
    This is the idea behind Testing-Library from what I understand.

    https://testing-library.com/

  • Mastering Jest: A Complete Guide to Testing Next.js Applications Part-2
    1 project | dev.to | 5 Sep 2023
    The Testing Library: The Testing Library offers guidance on best practices for testing user interfaces effectively, with a focus on user-centric testing.
  • How to run visual tests in 2023
    1 project | dev.to | 25 Aug 2023
    There are great tools like Testing Library that render a single component in a single state and then programmatically inspect the resulting DOM. However, the salient details of the rendered HTML – like color, layout, and scale – are hard to express. So, the tests end up brittle (over-specified) or insufficient (under-specified).
  • Let's Make Learning Frontend Great Again!
    11 projects | dev.to | 22 Aug 2023
    LiveCodes provides many of the commonly used developer tools. These include Monaco editor (that powers VS Code), Prettier, Emmet, Vim/Emacs modes, Babel, TypeScript, SCSS, Less, PostCSS, Jest and Testing Library, among others. All these tools run seamlessly in the browser without any installations or configurations. It feels like a very light-weight version of your own local development environment including the keyboard shortcuts, IntelliSense and code navigation features.
  • Sharing UI Tests Between Javascript Frameworks
    3 projects | dev.to | 28 Jun 2023
    As I've been writing this series, I realized it's an ode to the magic of Testing Library, which is built for testing UIs as a user would experience an app. This principle means Testing Library is not introduced to your UI until after it has already rendered...which means Testing Library is navigating a DOM just as a user would...and users do not know or care what framework you used to build your UI, just that it works as expected.

axe-core

Posts with mentions or reviews of axe-core. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-15.
  • How to Write Accessible Technical Documentation – Best Practices with Examples
    2 projects | dev.to | 15 Apr 2024
    ‌Videos To caption videos, HTML is a great option. But if you are using markdown, you can embed videos from YouTube and Vimeo using the tag. These apps offer in-built caption support so you can enable captions before adding the embed code.

    You could also install third-party plugins for this purpose.

    Here’s another tip: avoid flashing content in your videos as it could lead to seizure triggers. If your video has flashing bright colours, ensure that it does not exceed two times within a second.

    Add transcripts to audios and videos

    It’s a good idea to add transcripts to your audio and video content. Not everyone will want to watch or listen to the content. But they may be curious to know what it is about.

    By adding a transcript, you make it easier for anyone to navigate through the content and get the information that they need.

    Transcript for audio
    For audio content, you can insert transcripts using HTML.

    Here’s an example:

     controls muted> 
       src="ringtone.mp3" type="audio/mpeg"> 
     
    
     
      

    Here is a transcription of the text

    00:03 = I am going to be productive today

    00:05 = I am going to be productive today

    00:08 = I am going to be productive today

    00:10 = I need to be productive today

    00:11 = I have to be productive today

    00:13 = I should be productive today

    00:16 = I am going to be productive today

    00:18 = I ought to be productive today

    00:21 = I have to be productive today

    00:23 = Productivity matters to me

    Enter fullscreen mode Exit fullscreen mode

    For markdown documentation sites like Docusaurus, you can create a custom component.‌

    • In your src/components folder, create a file named transcript.jsx.

    • Insert this code:

    import React, { useState } from 'react'; 
    export default function Transcript({ }) { 
      const [showTranscript, setShowTranscript] = useState(false); 
      const toggleTranscript = () => { 
        setShowTranscript(!showTranscript); 
      }; 
      return ( 
        <div> <a href="#" onClick={toggleTranscript}> { 
        showTranscript ? 'Hide transcript' : 'View transcript'
        } 
        </a> {showTranscript && ( 
    (insert your transcript text here) div> )} </div> ); }
    Enter fullscreen mode Exit fullscreen mode
    • Go to your markdown file and import it.
    import Transcript from '@site/src/components/transcript'; 
    
    
    
    Enter fullscreen mode Exit fullscreen mode

    A screenshot of the audio transcript output in a documentation site

    Note: I added some tweaks to the code to make transcript display optional. You can edit it if you want the transcript to show as the page loads.

    Transcript for video
    Now for videos, YouTube is a great option. It provides inbuilt transcripts for your videos. So, you can always embed YouTube videos in your docs.

    The transcript is in the video description after the main details. The transcript will display with the timestamps when you click the “Show Transcript” button.

    Add code snippets and use the colour contrast technique

    How to add code snippets
    Use code blocks within the text to explain code instead of images. You could also use code snippets to showcase the output of your code. Unless it is necessary to add an image, you should use code snippets.

    For instance,

    index.html

     
       
        
         
        A calculator app 
         
        
        
        
      
    
    Enter fullscreen mode Exit fullscreen mode

    This will allow screen readers to read through the code, which they are not able to do with screenshots.

    A screenshot of the above code

    Colour contrast technique
    The colour contrast technique implies using colours that are opposite or heavily contrasting.

    For example, using black text on a white background has a high contrast, as opposed to using light brown text on a brown background.

    When combining colours, you could use an accessible colour palette like Color Safe.‌

    Using a pale white colour on a green background gotten from Color Safe

    Add translation options

    There are documentation sites that provide translation options where you can build your docs in multiple languages, websites like Jekyll. This is an example.

    Docusaurus is also another doc site that provides multilingual options using Crowdin or Git.

    Use accessibility testing tools

    There are tools you can use to check for errors in accessibility in your docs. Some examples are WAVE (Web Accessibility Evaluation Tool) and AXE (Accessibility Engine).

    Also, you can get the NVDA(NonVisual Desktop Access) screen reader to test out your content. This software will let you know how the content of your documentation will be perceived by a user using a screen reader.‌

    Set up an improvement or suggestion box

    Finally, it may not be possible to cover the needs of every user. So you could add a suggestion or improvement box, allowing users to send feedback about how you could further improve the content. Hearing firsthand from users can help you know how best to make the docs accessible for them.

    To add an improvement box, you could use an external form link that stores the users’ inputs or you could set up the suggestion box in the docs.

    How to add an external form link in Docusaurus

    You would need to create a custom component for that.

    • Go to src/components folder and create a file feedback.jsx.

    • Add this code:

    import React from 'react'; 
    
    export default function FeedbackButton({ href }) {
      return ( <a href={href} target="_blank" rel="noopener noreferrer" > Give Feedback </a> ); 
    }; 
    
    Enter fullscreen mode Exit fullscreen mode
    • In your markdown file import it:
    import FeedbackButton from '@site/src/components/feedbackbutton';
    
    Enter fullscreen mode Exit fullscreen mode
    • Insert the link
     
    
    Enter fullscreen mode Exit fullscreen mode

    When you run it on your docs, it should showcase a link to Google forms. Google Forms is an example, you could add the link to your company website or server.

    Here’s what it’ll look like:

    A feedback link for suggestion in a docs site

    Summary

    To follow and implement these accessibility best practices, you can consider creating or using an already made style guide. This can help you consistently implement these practices and make it easier for you and other technical writers on your team.

    There are style guides focused on accessibility for technical writers, such as the following:

    That sums up my tips about web accessibility practices in writing. I’m a technical writer, and you can reach out to me on Instagram or hire me via Upwork. Thank you for reading.‌

  • Responsive design and cross-device testing
    1 project | dev.to | 27 Feb 2024
    To measure or rather estimate accessibility, we can use automated audits like WAVE, axe and the accessibility report in Lighthouse or PageSpeed Insights to ensure that we don't violate essential Web Content Accessibility Guidelines (WCAG)
  • Deque Systems Sues BrowserStack for Intellectual Property Theft
    1 project | news.ycombinator.com | 14 Feb 2024
    axe-core licensed via MPL 2.0: https://github.com/dequelabs/axe-core

    Here is the BrowserStack extension:

  • 🌟 #DEVImpact2023: A Year of Challenges, Triumphs, and The Future
    2 projects | dev.to | 28 Dec 2023
    [ ] Checked with axe DevTools and addressed Critical and Serious issues?
  • First time diving into Accessibility
    1 project | /r/ExperiencedDevs | 10 Nov 2023
    axe-core - To detect violations on page level.
  • Accessibility, SustyWeb, SDGs, and upcoming European Legislation in 2024/2025 🇪🇺⚖️
    2 projects | dev.to | 6 Nov 2023
    Like auditing WCAG compliance with accessibility tools like axe and WAVE, it has become much easier to measure and provide data about the ecological impact of web development, but there are still a lot of unknown figures.
  • React-ing to accessibility: Building accessible e-commerce forms that everyone can use
    4 projects | dev.to | 20 Jul 2023
    Axe is a set of tools created by Deque, to provide a solution for a testing library. To use Axe, one of the possible ways is to install Axe DevTools, which is a browser extension that provides you with a way to test your applications for accessibility issues. To start testing for accessibility using Axe DevTools, you just open the browser's Developer Tools, navigate to the Axe DevTools tab, and run an analysis on your desired webpage;
  • Como adicionar recursos de acessibilidade em um site?
    2 projects | /r/brdev | 12 May 2023
  • Is siteimprove legit?
    2 projects | /r/accessibility | 4 May 2023
  • I just launched the new website of the agency I work for. I appreciate your feedback!
    1 project | /r/Frontend | 24 Apr 2023
    If you run the site through axe on the different layouts, it will highlight a lot of these. Many are color contrast issues. There are a few others that the tool won't pick up like removing focus outlines on the contact form or keyboard navigation issues on the main nav. If you hit the tab key, you'll see that each link in the main nav gets focus twice. That's because you have a button nested inside of an anchor tag. It's invalid HTML anyway, so you should probably address that.

What are some alternatives?

When comparing testing-library-docs and axe-core you can also consider the following projects:

jsdom-worker - 👷‍♀️ Use Web Workers in Jest / JSDOM 🌈

lighthouse - Automated auditing, performance metrics, and best practices for the web.

react-ui-boilerplate - The boilerplate to help you build React UI library and publish to NPM automatically.

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

docusaurus-plugin-remote-content - A Docusaurus plugin to download content from remote sources when it is needed.

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

cypress-realworld-testing - Next.js project for learn.cypress.io

pa11y - Pa11y is your automated accessibility testing pal

playwright-chrome-recorder - playwright-chrome-recorder

CodeceptJS - Supercharged End 2 End Testing Framework for NodeJS

webdriver-bidi - Bidirectional WebDriver protocol for browser automation

jest - Delightful JavaScript Testing.