Skip to content

Commit bdd7bf2

Browse files
Sync help documentation from main repository
Synced from: 96bd00ee3559e5f8f2e0774ad905acc59028c90e Date: 2026-01-02 23:03:57 UTC
1 parent 7e1a615 commit bdd7bf2

File tree

2 files changed

+44
-19
lines changed

2 files changed

+44
-19
lines changed

help/common/accessibility.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ The accessibility scanner will check:
4444

4545
## Interpreting Results
4646

47+
**Important:** WCAG A, AA, and AAA ratings cannot be fully achieved with automated testing alone. Manual testing with assistive technologies is required for full conformance. According to [Deque (makers of axe-core)](https://www.deque.com/automated-accessibility-coverage-report/), automated tests find less than 60% of accessibility issues on average. CodeFrog's automated testing helps identify many issues, but should be combined with manual testing for complete WCAG compliance.
48+
4749
### Color Contrast
4850

4951
The scanner reports contrast ratios for all text elements:
@@ -56,7 +58,7 @@ Results show:
5658
- ⚠️ Warning: Close to threshold, consider improving
5759
- ❌ Fail: Below WCAG AA standards, must be fixed
5860

59-
CodeFrog tests for both AA and AAA contrast requirements. The WCAG rating in your results shows which level your page passes.
61+
CodeFrog tests for both AA and AAA contrast requirements. The WCAG rating in your results shows which level your page passes based on automated testing, but full conformance requires manual testing.
6062

6163
### Keyboard Navigation
6264

@@ -144,10 +146,12 @@ Some automated checks may flag issues that aren't actual problems:
144146
## Best Practices
145147

146148
1. **Test Early and Often:** Run accessibility scans during development, not just before launch
147-
2. **Combine Automated and Manual Testing:** Automated tools catch many issues, but manual testing is essential
149+
2. **Combine Automated and Manual Testing:** Automated tools catch many issues, but manual testing is essential for full WCAG conformance at any level (A, AA, or AAA). According to research, automated tests find less than 60% of accessibility issues on average. Therefore, manual testing with assistive technologies is required for complete compliance.
148150
3. **Test with Real Screen Readers:** Use VoiceOver (macOS), NVDA (Windows), or JAWS
149-
4. **Involve Users with Disabilities:** Get feedback from actual users when possible
150-
5. **Follow WCAG Guidelines:** Use the official WCAG 2.1 guidelines as your reference
151+
4. **Test Keyboard Navigation:** Verify all functionality is accessible via keyboard only
152+
5. **Involve Users with Disabilities:** Get feedback from actual users when possible
153+
6. **Follow WCAG Guidelines:** Use the official WCAG 2.1 guidelines as your reference
154+
7. **Understand Limitations:** Remember that automated testing alone cannot fully verify WCAG compliance. For more information, see the [Deque automated accessibility coverage report](https://www.deque.com/automated-accessibility-coverage-report/).
151155

152156
## Related Topics
153157

help/common/wcag-levels.md

Lines changed: 36 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,19 @@ When you run an accessibility scan, CodeFrog tests for violations across:
102102

103103
### Understanding WCAG Ratings in Results
104104

105-
After running an accessibility scan, CodeFrog displays a **WCAG Rating** that shows which level your page passes:
105+
After running an accessibility scan, CodeFrog displays a **WCAG Rating** that shows which level your page passes based on automated testing:
106106

107107
- **WCAG A**: No Level A violations found
108108
- **WCAG AA**: No Level A or AA violations found
109-
- **WCAG AAA**: No violations found at any level (A, AA, or AAA)
109+
- Automated testing never returns **WCAG AAA**—AAA always requires manual testing
110110

111111
**Example:**
112112
- If your page has no Level A or AA violations but has some AAA violations, your rating would be **"WCAG AA"**
113-
- If your page has no violations at all, your rating would be **"WCAG AAA"**
113+
- If your page has no violations at all, your rating would still be **"WCAG AA"** (automated testing never returns AAA)
114114
- If your page has Level A violations, it does not pass any level
115115

116+
**Important Note:** Automated testing can return A or AA ratings (never AAA), but **full WCAG A, AA, or AAA conformance cannot be achieved with automated testing alone**. Manual testing with assistive technologies (screen readers, keyboard navigation, etc.) is required for full conformance at any level. According to [Deque (makers of axe-core)](https://www.deque.com/automated-accessibility-coverage-report/), automated tests find less than 60% of accessibility issues on average. CodeFrog's automated testing helps identify many issues, but should be combined with manual testing for complete WCAG compliance.
117+
116118
### What CodeFrog Checks
117119

118120
CodeFrog's accessibility testing checks for:
@@ -152,12 +154,20 @@ CodeFrog's accessibility testing checks for:
152154

153155
### WCAG Rating
154156

155-
The WCAG rating indicates the **highest level your page passes**. This is calculated by:
157+
The WCAG rating indicates the **highest level your page passes** based on automated testing. This is calculated by:
156158

157159
1. Checking if there are any Level A violations
158160
2. If no Level A violations, checking for Level AA violations
159-
3. If no Level AA violations, checking for Level AAA violations
160-
4. The rating is the highest level with no violations
161+
3. If no Level AA violations, the rating is **"AA"** (automated testing never returns AAA)
162+
4. The rating is the highest automated level (A or AA) with no violations
163+
164+
**Limitation of Automated Testing:** It's important to understand that automated testing can return A or AA ratings (never AAA), but **full WCAG A, AA, or AAA conformance cannot be achieved with automated testing alone**. Manual testing with assistive technologies is required to achieve full compliance at any level. Automated tools like CodeFrog can identify many issues, but they cannot catch all accessibility problems. For example, automated tests may miss issues related to:
165+
- Screen reader compatibility and user experience
166+
- Keyboard navigation flow and logical order
167+
- Content understandability and clarity
168+
- Context-dependent accessibility requirements
169+
170+
For more information about the limitations of automated accessibility testing, see the [Deque automated accessibility coverage report](https://www.deque.com/automated-accessibility-coverage-report/).
161171

162172
### Health Score
163173

@@ -215,24 +225,35 @@ When fixing issues:
215225
3. **Level AA** violations before Level AAA
216226
4. Focus on issues that affect the most users
217227

218-
### 5. Understand AAA Limitations
228+
### 5. Understand Automated Testing Limitations
219229

220230
Remember that:
221-
- Full AAA conformance requires manual testing
222-
- Some AAA requirements may not be practical for all content
223-
- Automated tools can only test a portion of AAA criteria
224-
- Focus on AAA for critical user flows, not necessarily entire sites
231+
- **Full WCAG conformance at any level (A, AA, or AAA) requires manual testing**
232+
- Automated tools can only test a portion of accessibility criteria
233+
- According to Deque research, automated tests find less than 60% of accessibility issues on average
234+
- Manual testing with assistive technologies is essential for complete compliance
235+
- Some requirements may not be practical for all content types
236+
- Focus on critical user flows for comprehensive testing
225237

226238
## Common Questions
227239

228-
### Can I achieve AAA with CodeFrog alone?
240+
### Can I achieve WCAG A, AA, or AAA with CodeFrog alone?
241+
242+
No. While CodeFrog can test for many WCAG rules at all levels (A, AA, and AAA), **full conformance at any level requires manual testing**. Automated testing alone cannot fully verify WCAG compliance because:
243+
244+
- Automated tests find less than 60% of accessibility issues on average ([Deque research](https://www.deque.com/automated-accessibility-coverage-report/))
245+
- Many accessibility requirements need human judgment and real-world testing
246+
- Screen reader compatibility must be tested with actual assistive technologies
247+
- Keyboard navigation flow requires manual verification
248+
- Content understandability and context-dependent issues need human evaluation
229249

230-
No. While CodeFrog can test for many AAA rules, full AAA conformance requires:
231-
- Manual testing with assistive technologies
250+
Full WCAG conformance requires:
251+
- Manual testing with assistive technologies (screen readers, voice control, etc.)
232252
- Human judgment for some criteria
233253
- Testing with actual users who have disabilities
254+
- Combining automated and manual testing approaches
234255

235-
CodeFrog helps you get close, but manual testing is required for full AAA compliance.
256+
CodeFrog helps you identify and fix many issues automatically, but manual testing is essential for full compliance at any WCAG level.
236257

237258
### What if I have AAA violations but pass AA?
238259

0 commit comments

Comments
 (0)