cypress-axe icon indicating copy to clipboard operation
cypress-axe copied to clipboard

Test accessibility with axe-core in Cypress

Results 81 cypress-axe issues
Sort by recently updated
recently updated
newest added

`axe-core/axe.min.js` cannot be loaded if the Cypress config is contained in a sub directory. The resolved path traverses from the location of the config, but starts at the project root...

It would be nice if this was updated to support Cypress 11.

If I use runOnly with tags for `wcag2a` and `wcag2aa`, I find violations as expected: `cy.checkA11y(subject, { runOnly: { type: "tag", values: ["wcag2a", "wcag2aa"] } })` But if I use...

Related: #22, vercel/next.js#7945 Full repo: [here](https://github.com/katawaredev/permisisve-nextjs-template) _(note: some of the packages there are not yet published, but the test can run without them)_ I have a simple test: ```js import...

related to #75, #68 After reading [Add a callback for getting the full axe-core results object](#67) and [New API RFC](#75) issues, I decided to open this PR, maybe we can...

## Issues with the current API * **Multiple optional positional arguments** in the `checkA11y()` method make it awkward to use and very difficult to extend. We have several open pull...

enhancement

Hi, I am currently using `cypress-axe` and I'm experiencing the same issues that were identified in this issue that's been closed: https://github.com/component-driven/cypress-axe/issues/22 I left a comment there but didn't get...

Webpack 5 throws `Critical dependency: require function is used in a way in which dependencies cannot be statically extracted` when used with cypress-axe. This PR changes the flow so that...

This may be a more conceptual question than a direct issue with the tool per-say, but we have an Angular app that's using [Transloco](https://ngneat.github.io/transloco/) for asynchronous translated content. When we...

I found that the `includedImpacts` option was very helpful, but got me into a weird state in which I could have failures but not have the assertions logged out. Here...