We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Which libraries can you use for accessibility testing? (like axe)
The text was updated successfully, but these errors were encountered:
You can use Axe, evaluate it in the context of the page and it should work!
Sorry, something went wrong.
Hi @tomern
You can use axe-playwright.
npm i -D axe-playwright
axe
page
beforeAll(async () => { browser = await chromium.launch(); page = await browser.newPage(); await page.goto(`http://localhost:3000/login`); await injectAxe(page); });
it('simple accessibility run', async () => { await checkA11y(page); });
No branches or pull requests
Which libraries can you use for accessibility testing? (like axe)
The text was updated successfully, but these errors were encountered: