Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@qavajs/steps-accessibility

Package Overview
Dependencies
Maintainers
3
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qavajs/steps-accessibility

Steps to perform accessibility checks

latest
Source
npmnpm
Version
3.1.0
Version published
Maintainers
3
Created
Source

@qavajs/steps-accessibility

Steps to perform accessibility checks using axe library. Library can work on top of playwright and webdriverio drivers

Installation

npm install @qavajs/steps-accessibility

Configuration

module.exports = {
    default: {
        require: [
            'node_modules/@qavajs/steps-wdio/index.js', //corresponding driver library should be imported first
            'node_modules/@qavajs/steps-accessibility/index.js'
        ],
        format: [
            '@qavajs/html-formatter:report.html'
        ],
    }
}

Usage

Lib provides I perform accessibility check step that creates axe instance, performs checks and attach html report in base 64 format

Feature: Accessibility

  Scenario: perform accessibility check
    When I open 'https://qavajs.github.io/' url
    And I perform accessibility check

FAQs

Package last updated on 08 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts