IKivan-kozenko -aqa
Try yourself as a QA tester
Back to topic

Quiz

Accessibility testing

Check yourself

  1. 1.You want to scan only the navigation menu for accessibility issues, not the whole page. What do you use?
  2. 2.Which npm package provides the axe-core integration for Playwright?
  3. 3.Approximately what percentage of WCAG issues does axe-core catch automatically?
  4. 4.You need to scan a modal dialog for accessibility issues, but the modal only appears after clicking a button. In what order must you perform these actions?
  5. 5.Your project has an accessibility conformance target of WCAG 2.1 AA. Which .withTags() call matches this target?
  6. 6.You find a known color-contrast violation in a third-party component you cannot change yet. How do you prevent it from failing tests while tracking it for future fixing?
  7. 7.What is the benefit of extracting shared axe configuration into a fixture?
  8. 8.What does expect(results.violations).toEqual([]) assert?