The Top 10 Questions and Answers About Digital Accessibility
TABLE OF CONTENTS
- 1. What exactly is “digital accessibility”?
- 2. Why does digital accessibility matter—for people and for business?
- 3. Which laws and standards should we actually care about?
- 4. How can I tell if my site or app is accessible today?
- 5. What are the most common accessibility problems we should fix first?
- 6. How do PDFs, videos, and other media fit into digital accessibility?
- 7. Who should “own” digital accessibility inside the organization?
- 8. How do we build accessibility into our development and design process?
- 9. Can AI and automation really help, or will it just create more noise?
- 10. What’s the best way to get started—and what does “good” look like in 12 months?
- Where to go next
Digital accessibility used to be a niche topic. Now it’s a board-level concern.
Regulations are tightening (ADA, Section 508, the European Accessibility Act), lawsuits are rising, and yet studies show that the vast majority of major websites still fail basic WCAG checks. At the same time, over 1.3 billion people worldwide live with a disability, representing trillions of dollars in annual disposable income. Research from Accenture’s report, Getting to Equal: The Disability Inclusion Advantage, highlights that companies that lead on disability inclusion significantly outperform peers on key financial metrics.
If you’re trying to make sense of what to do, you’re not alone. Below are the 10 questions teams ask most often about digital accessibility—plus clear, practical answers you can put in front of your own stakeholders today.
1. What exactly is “digital accessibility”?
Digital accessibility means designing and building digital products—websites, apps, PDFs, videos, and software—so that people with disabilities can use them independently and effectively.
That includes people who:
- Are blind or low-vision and use screen readers or magnification
- Are deaf or hard-of-hearing and rely on captions or transcripts
- Have mobility or motor disabilities and use keyboard-only navigation, switch devices, or voice input
- Have cognitive or learning differences and benefit from clear content, consistent layouts, and reduced distractions
- Experience temporary or situational barriers (a broken arm, a noisy room, bright sunlight on a phone screen)
In practice, digital accessibility ties together:
- Standards like the Web Content Accessibility Guidelines (WCAG 2.1 / 2.2)
- Assistive technologies such as screen readers, voice control, and screen magnifiers
- Design & engineering practices that make experiences perceivable, operable, understandable, and robust
Accessibility is not a separate layer you sprinkle on top at the end. It’s a way of designing and engineering that assumes your users are diverse from the start.
For a business-focused overview of why this matters, see TestParty’s article, The Business Case for Digital Accessibility.
2. Why does digital accessibility matter—for people and for business?
There are three overlapping reasons:
a) It’s a human rights and equity issue
Disability isn’t a small edge case; it’s a normal part of human life. Over 1.3 billion people globally live with disabilities, and many more experience temporary or situational impairments. When your website or app is inaccessible, you’re effectively locking people out of jobs, education, commerce, entertainment, and civic life.
b) It’s a business growth and performance opportunity
Multiple consulting reports have linked disability inclusion and broader diversity to better financial performance:
- Accenture’s Getting to Equal: The Disability Inclusion Advantage found that companies leading on disability inclusion outperformed peers on revenue and net income and were more likely to deliver higher total shareholder returns.
- McKinsey’s Diversity Wins: How Inclusion Matters shows that more diverse companies are significantly more likely to outperform in profitability.
On the digital side, accessible experiences:
- Convert better (fewer drop-offs at checkout or signup)
- Reduce churn (fewer frustrated users abandoning your product)
- Improve SEO (clean, semantic HTML often ranks better)
- Improve UX for everyone (captions in noisy environments, larger tap targets on mobile, clear structure, etc.)
Accenture’s point of view paper, The Accessibility Advantage, goes further: firms that treat accessibility as a strategic lever see gains in innovation, customer loyalty, and employee engagement.
c) It’s a legal and risk management issue
In the U.S., thousands of web accessibility lawsuits are filed annually under the ADA and related laws. In the EU, the European Accessibility Act (EAA) became enforceable in June 2025, requiring many digital products and services—e-commerce, banking, media, transportation, and more—to meet accessibility standards or face fines, loss of market access, and reputational damage.
Accessibility is rapidly shifting from “nice to have” to non-negotiable business hygiene.
3. Which laws and standards should we actually care about?
The specifics depend on where you operate and whom you serve, but the main pillars are:
WCAG (Web Content Accessibility Guidelines)
- Created by the W3C and used globally as the primary technical standard for web and mobile accessibility.
- Most laws (ADA, EAA, Section 508, etc.) either directly or indirectly reference WCAG 2.1 AA or WCAG 2.2 AA as the expected level of conformance.
ADA (Americans with Disabilities Act) – U.S.
- Interpreted by regulators and courts to apply to websites and apps, especially for “places of public accommodation” like retail, hospitality, financial services, and healthcare.
- There is no single official “ADA web standard,” but WCAG 2.1/2.2 AA is widely considered the benchmark.
Section 508 – U.S. federal government
- Requires federal agencies (and many of their vendors) to meet accessibility standards for information and communication technology.
- Harmonized with WCAG 2.0 AA at minimum; many organizations aim for WCAG 2.1 AA or higher.
European Accessibility Act (EAA) – EU
- Effective June 28, 2025.
- Applies to a broad range of products and services (including e-commerce, telecom, banking, e-readers, and more) that serve EU consumers—even if your organization is based somewhere else.
Other regional laws
- Canada: Accessibility for Ontarians with Disabilities Act (AODA)
- UK: Equality Act and Public Sector Bodies Accessibility Regulations
- Various national and state-level regulations in other regions
Practical takeaway: If your digital products are WCAG 2.1 AA / 2.2 AA conformant, you’ve aligned with the core technical expectations of most modern accessibility laws, even if the legal language differs.
4. How can I tell if my site or app is accessible today?
You can’t know from a single scan, but you can get a reliable signal in a few steps.
1) Start with quick automated checks
Use automated tools (browser extensions, CI checks, or platforms like TestParty) to scan key pages:
- Home page and major landing pages
- Login / registration
- Checkout / booking flows
- Account pages and dashboards
- High-traffic or high-risk templates (e.g., PDFs for contracts, statements, forms)
These tools catch many obvious issues—missing alt text, low contrast, empty buttons, missing form labels, and more—and help you see patterns at scale. TestParty’s blog post, Automated Accessibility Remediation: Everything You Need to Know, explains how automation can fit into this first layer of defense.
2) Add human review
Automated tools alone typically catch only a portion of WCAG issues. Some things still require human judgment, such as:
- Does the keyboard focus follow a logical reading order?
- Are link texts descriptive (“View order #12345”) rather than generic (“Click here”)?
- Is the language clear and understandable?
- Can a person who uses only a keyboard complete your main tasks?
- Does the experience actually work with real assistive technologies?
You’ll want:
- At least one manual audit by an accessibility specialist (internal or external), and
- Ideally, user testing with people with disabilities (screen reader users, keyboard-only users, etc.)
3) Treat it as an ongoing program, not a one-time test
Accessibility is not a “pass/fail once” exercise. Your product is constantly changing, so you also need:
- Continuous monitoring (automated scans in CI/CD and of production)
- Regression checks whenever new features ship
- KPIs such as issues per page, time-to-fix, and coverage of critical flows
TestParty’s business case article gives examples of how teams track this over time.
5. What are the most common accessibility problems we should fix first?
Across large-scale studies of the web and day-to-day audits, a familiar set of problems appears again and again:
- Low color contrast
- Text that’s too faint against its background (for example, light gray on white).
- Fix: Use contrast ratios of at least 4.5:1 for normal text and 3:1 for large text. Design systems should encode these rules up front.
- Missing or poor alternative text (
alt) on images- Images with no alt text at all, or meaningless descriptions like “image123.png.”
- Fix: Provide meaningful alt text for informative images; mark purely decorative images as
alt="".
- Empty or non-descriptive links and buttons
- Link or button text such as “Click here” or icons without labels.
- Fix: Use text like “Download invoice (PDF)” or add accessible names to icon-only buttons.
- Form fields without proper labels or clear instructions
- Screen readers can’t tell what input fields are for.
- Fix: Use programmatic labels bound to inputs, meaningful placeholders, and clear error messages.
- Keyboard traps and poor focus management
- Users cannot navigate or escape modals using only the keyboard, or focus jumps unpredictably.
- Fix: Ensure all interactive elements are focusable in a logical order, and manage focus appropriately when dialogs open/close.
- Improper use of headings and landmarks
- Pages with no logical heading structure (for example, jumping from
<h1>straight to<h4>). - Fix: Use headings to reflect the content hierarchy and ARIA landmarks only where they are needed and correct.
- Pages with no logical heading structure (for example, jumping from
If you only addressed these categories across your core user journeys, you would dramatically reduce risk and improve usability for a large portion of your audience.
6. How do PDFs, videos, and other media fit into digital accessibility?
Many organizations put their most important content in:
- PDFs (reports, statements, contracts, brochures)
- Office documents
- Videos and webinars
- Downloadable forms
These assets are often the least accessible and a frequent source of user frustration and legal risk.
PDFs and documents
Common problems in PDFs include:
- No tagged structure (headings, lists, table markup)
- Incorrect reading order
- Unlabeled form fields
- Images without alt text
Manually remediating large volumes of PDFs is slow and expensive. Tools and platforms such as TestParty’s PDF-to-HTML and remediation workflows can analyze documents, convert them into accessible HTML, or generate tagged, accessible versions—dramatically reducing manual effort. The TestParty blog post, Automated Accessibility Remediation: Everything You Need to Know, breaks down how AI-based remediation can safely assist here.
Video, audio, and rich media
To be accessible, media typically needs:
- Captions (not just auto-captions)
- Transcripts for audio and video
- Audio descriptions for important visual-only information
Accenture’s The Accessibility Advantage notes that accessible media doesn’t just prevent exclusion—it often increases engagement, content recall, and user satisfaction, particularly in global and mobile-first audiences.
If you’re investing heavily in video, accessibility can directly boost reach and performance, not just compliance.
7. Who should “own” digital accessibility inside the organization?
Short answer: everyone, but with clear accountability.
Most mature organizations use a distributed ownership model:
- Executives & legal
- Set policy and risk appetite
- Approve budgets and staffing
- Tie accessibility to brand, DEI, ESG, and compliance goals
- Product & design
- Define inclusive requirements and UX patterns
- Maintain accessible design systems and component libraries
- Engineering
- Implement accessible code
- Integrate automated accessibility checks into CI/CD
- Fix issues within normal sprint work
- Content and marketing
- Write in clear, plain language
- Provide meaningful alt text, captions, and transcripts
- HR / Talent / L&D
- Train employees (especially product, design, engineering)
- Ensure internal systems and employee tools are accessible
Many organizations also appoint:
- An Accessibility Program Lead or Head of Accessibility, and
- An Accessibility Guild or Champions network inside product and engineering teams.
Reports like McKinsey’s Diversity Wins and Accenture’s The Accessibility Advantage both underline the same theme: distributed ownership plus executive sponsorship is what separates leaders from laggards.
8. How do we build accessibility into our development and design process?
If accessibility is only addressed at the very end of a project, it will feel expensive and frustrating. High-performing teams do three things differently.
1) Shift left
Bake accessibility into:
- Requirements – User stories that specify accessibility behavior (“As a screen reader user, I can complete checkout without using a mouse”)
- Design – Accessible color palettes, typography, spacing, and components in the design system
- Code review & CI – Linting, automated checks, and accessibility review before merge
2) Standardize on reusable patterns
Rather than re-solving accessibility for every new feature:
- Build or adopt accessible components (modals, menus, tabs, carousels, form controls, etc.)
- Document dos and don’ts in your design system
- Use pattern libraries so new features inherit good behavior by default
Platforms like TestParty focus specifically on automating code checks and remediation so that engineering teams can fix issues where they work—editors, pull requests, and CI pipelines—without waiting for infrequent external audits. The article Automated Accessibility Remediation: Everything You Need to Know outlines how this “shift left” strategy keeps accessibility aligned with modern development practices.
3) Measure and iterate
Treat accessibility like performance or security:
- Track issues found vs. issues fixed, time-to-fix, and coverage of critical flows
- Monitor lawsuits avoided, support ticket volume, and customer satisfaction related to accessibility
- Review these metrics with leadership regularly, similar to uptime or performance dashboards
Accenture’s Getting to Equal: The Disability Inclusion Advantage shows that companies that treat inclusion as an ongoing capability—not a one-off campaign—see the highest returns.
9. Can AI and automation really help, or will it just create more noise?
Done poorly, generic automation can absolutely create noise: false positives, shallow fixes, or “overlay” solutions that don’t address underlying code problems.
Done well, however, AI and automation are quickly becoming essential to closing the accessibility gap:
- The web is getting more complex every year, with richer components and more frequent deployments.
- Manual audits alone cannot keep up with continuous delivery across multiple platforms and brands.
Where AI and automation shine:
- Automated scanning at scale – catching obvious issues across thousands of pages and templates
- Smart grouping and deduplication – reducing “alert fatigue” by grouping similar issues and prioritizing by impact
- Code suggestions and auto-fixes – rewriting HTML, ARIA, or CSS to meet WCAG, with human review and approval
- Document remediation – transforming PDFs and complex documents into accessible formats far faster than manual processes
- Developer enablement – explaining why an issue matters and how to fix it in plain language, right in the workflow
TestParty’s article Automated Accessibility Remediation: Everything You Need to Know explains how combining AI-driven detection and remediation with human oversight avoids the pitfalls of purely manual or purely automated approaches.
Key principle: AI should amplify accessibility professionals and engineers, not replace them.
10. What’s the best way to get started—and what does “good” look like in 12 months?
If you’re starting or rebooting your accessibility program, here’s a realistic 12-month path.
Months 0–3: Baseline and quick wins
- Executive alignment
- Clarify why you’re doing this: risk, revenue, inclusion—or all three.
- Assign an executive sponsor and a program owner.
- Baseline audit
- Run automated scans on your key properties with a platform like TestParty.
- Commission a targeted manual audit of your highest-risk flows (checkout, signup, account management, key PDFs).
- Fix the obvious, high-impact issues
- Color contrast, headings, alt text, broken keyboard flows, major form issues.
- Remediate the worst PDFs and the most frequently accessed documents first.
- Choose your core tools
- Select accessibility platforms and scanners (for code, PDFs, media).
- Integrate them lightly into development and QA so you start catching regressions early.
Months 3–9: Build it into how you ship
- Embed in design & development
- Update your design system with accessible patterns and documented guidelines.
- Add accessibility checks to pull requests, CI pipelines, and QA checklists.
- Use TestParty or similar tools to surface issues directly in engineers’ workflows.
- Train your teams
- Provide targeted training for designers, engineers, content authors, and PMs.
- Use real issues from your own product as training material so the learning is tangible.
- Start measuring KPIs
- Track issues over time, time-to-fix, and coverage of critical flows.
- Tie these metrics back to business outcomes: reduced support tickets, improved conversion, and fewer legal threats. TestParty’s business case article gives concrete examples of these links.
Months 9–12: Scale and optimize
- Formalize governance
- Publish a public Accessibility Statement on your site.
- Define SLAs for fixing accessibility bugs based on severity.
- Clarify what “WCAG 2.1/2.2 AA” means in your internal standards and acceptance criteria.
- Expand scope
- Bring mobile apps, additional brands or regions, and mission-critical third-party tools into your program.
- Start addressing advanced patterns (complex widgets, data-heavy dashboards, data visualizations, etc.).
- Tell the story
- Report progress to leadership using both human impact and business impact:
- Real user stories
- Risk reduction and lawsuits avoided
- Revenue growth from markets and customers that require accessibility
- Performance and engagement benefits (for example, accessible media performing better than non-accessible equivalents)
- Report progress to leadership using both human impact and business impact:
Accenture’s The Accessibility Advantage and Getting to Equal both show that organizations that take this kind of structured, multi-quarter approach unlock not just compliance, but innovation, resilience, and growth.
Where to go next
If you want to move from theory to execution:
- Read The Business Case for Digital Accessibility for a stakeholder-friendly summary you can share with leadership.
- Explore TestParty to see how automated detection and remediation can slot into your CI/CD, developer tools, and document workflows.
- Use Automated Accessibility Remediation: Everything You Need to Know as a primer on how AI can safely accelerate your remediation efforts.
Digital accessibility isn’t about achieving perfection overnight. It’s about committing to continuous improvement, building accessibility into how you design and ship, and recognizing that inclusive products are simply better products—for everyone.
Stay informed
Accessibility insights delivered
straight to your inbox.


Automate the software work for accessibility compliance, end-to-end.
Empowering businesses with seamless digital accessibility solutions—simple, inclusive, effective.
Book a Demo