All WCAG criteria
WCAG 2.1·Operable·2.5 Input Modalities
2.5.3 Label in Name
Level AThe accessible name (aria-label) must contain the visible label text.
Why it matters
Voice-input users say the visible text — if aria-label differs, the command does not match anything.
Common failure
<button aria-label="Submit form">Send</button>
Accessible version
<button aria-label="Send form">Send</button>
How OnlyEnable handles this
Source-code fix required. No widget can solve this — it requires changes to your content or markup. Our remediation team can help.