Google's Agentic Browsing Lighthouse Scoring Factor: The Well-Formed Accessibility Tree

Share this post

Agentic series can AI access your website number one graceful web studio.

Part 1 of the AI Visibility Series. The machine-eye view of your website, and why it now decides whether AI can find you.

On May 19, 2026, Google changed how search works, and quietly handed every business owner a scorecard for the AI era. Most people are still trying to read it. This series breaks it down, one piece at a time, starting with the piece that matters most.

Here is the part almost no one is saying out loud: search engines and AI agents are blind. Not careless, not lazy. Blind, in the most literal sense. They do not see your beautiful hero image, your brand colors, or your clever button hover effect. They experience your website the same way a person using a screen reader does. Through code, structure, and labels. Nothing else.

If you have ever cared about whether a blind customer could use your site, you already understand how to get found by AI. You have been doing the work all along. Let me show you why.

Meet the accessibility tree

When a browser loads your page, it builds two things. The first is the visual page you see, the colors and images and layout. The second is invisible, and it is called the accessibility tree.

The accessibility tree is a stripped-down map of your page that lists what every meaningful element is, what it is called, and what it is doing. A button. Named “Book a consultation.” Currently enabled. A heading. Named “Our services.” Level two. This is the version of your website that screen readers have always read aloud to people who cannot see the screen.

And now it has a second audience. AI agents rely on the accessibility tree as their primary data model. When an AI tries to understand or use your site, it reviews the accessibility tree to identify the interactive elements, exactly like a screen reader does. Google's own guidance confirms that browser agents interpret the accessibility tree, inspect your code structure, and read visual renderings to get their work done.

So the accessibility tree is no longer just an accessibility feature. It is the machine-eye view of your entire website. If it is clear, AI understands you. If it is a mess, AI moves on.

Infographic comparing what people visually see on a website with what AI and screen readers can understand from the code. Full alt text in caption.
This example shows why accessible websites need more than good visual design. The mock dental page looks clear to sighted users, but the code tells a different story: the header image has missing alt text, the main heading is coded as an H4 with no proper page structure, and the “Book an appointment” call to action is a div instead of a real link. When content is not coded accessibly, screen readers, search engines, and AI tools may miss or misunderstand the page.

Why this now counts twice

Here is what changed, and why accessibility just became the highest-leverage work on your website.

Google's Lighthouse tool has always graded sites in four areas: performance, accessibility, best practices, and SEO. Accessibility was one of the four. Important, but easy for busy owners to skip.

Now Lighthouse has added a fifth area built for the AI era, called agentic browsing, and it grades how ready your site is for AI agents. That new category has four pillars. A well-formed accessibility tree, minimal layout shift, an llms.txt file, and WebMCP tools. The accessibility tree sits at the top of that list.

Read that again, because it is the whole point. Accessibility is now measured twice. Once in the classic accessibility score, where it always lived. And again as the number one pillar of the new AI readiness score. The same work that makes your site usable for a blind customer now makes it readable for AI, and you get graded on it in two separate places.

Accessibility is now graded in two places

Where accessibility is graded in Lighthouse
Where your site is graded What it measures Where accessibility shows up
Lighthouse Accessibility score Can people, including assistive tech users, use your site The entire category
Lighthouse Agentic Browsing score Can AI agents read and use your site The number one pillar, the accessibility tree

One investment. Two scores. This is why I tell my clients that accessibility is not a checkbox anymore. It is the foundation that holds up your human experience, your search visibility, and your AI visibility at the same time.

What a well-formed accessibility tree looks like

A well-formed tree is not complicated. It is honest. Every element says what it truly is, and every interactive thing has a name. Chrome groups the agent checks into three simple ideas: names and labels, tree integrity, and visibility. Here is the practical version.

  • Use real HTML elements for real things. A button should be a button, a link should be a link, a heading should be a heading. Not a styled div pretending to be one.
  • Give every interactive element a name. Buttons say what they do. Links describe where they go. Form fields have labels that are tied to them in code, not just placeholder text that vanishes.
  • Keep one clear heading outline. One H1 that names the page, then H2s and H3s in order. Pick heading levels for structure, never for font size.
  • Add page landmarks. A header, a nav, a main, and a footer give your page a skeleton that both screen readers and agents can navigate.
  • Write intentional alt text. Meaningful images get a short, accurate description. Purely decorative images get empty alt text so they do not add noise.
  • Expose state. If something is expanded, selected, checked, or disabled, your code should say so, not just show it with color.
  • Never hide interactive things from the tree. If a person can click it, an agent and a screen reader must be able to find it. Hiding a live button from the accessibility tree makes it invisible to both.
  • Make everything keyboard operable, with a visible focus outline and a keyboard order that matches the visual order.

If your site does these things, you have a well-formed accessibility tree. You are readable to people, to search, and to AI.

What fails, and what it costs you

These are the mistakes I see most often when I audit a site. Each one breaks the tree, and each one fails Lighthouse in both the accessibility score and the new agentic score. I have written what the failure actually feels like to a blind person and an AI, because they experience it the same way.

Common mistakes that break the accessibility tree

Common accessibility mistakes and what they cost
Common mistake What a screen reader and an AI experience Lighthouse result
Icon-only button with no label “Button.” No idea what it does. Fails accessible name checks
A div with a click handler instead of a real button Nothing. It is not announced as actionable. Fails, not in the tree as a control
Image with no alt text “Image.” No meaning. Fails image alt checks
Form field with only placeholder text An unlabeled field. What goes here? Fails form label checks
Skipped or multiple H1 headings A broken outline with no clear structure Fails heading order checks
“Click here” or “read more” links A link to nowhere describable Flagged for unclear link text
Custom dropdown built from divs with no ARIA An element that cannot be perceived or operated Fails name, role, value checks

A quick note, because this one trips people up. Color contrast is not on this list on purpose. Contrast matters a great deal for visitors with low vision, but it is a visual layer. It is not part of the accessibility tree, so it does not change how a screen reader or an AI reads your page. We will always fix contrast for your human visitors. It simply is not what this particular score is about.

None of the issues above are visible to you when you look at your pretty page. That is the trap. The site looks finished, so it feels finished. Meanwhile the machine-eye view is full of holes, and you never see them. Which brings us to how you actually look.

How to check your own site

You do not have to guess. Here are the tools I use and trust, from the fastest first look to the most honest final test. Run more than one, because every tool catches different things, and no automated tool catches everything.

Tools to check your accessibility tree

Tools to check your accessibility tree, with cost and skill level
Tool Best for Cost Skill level
Lighthouse (in Chrome DevTools) A fast score for both accessibility and, in Chrome Canary, agentic browsing Free Beginner
axe DevTools (Deque) Trusted developer-grade checks with very few false alarms Free tier Beginner to intermediate
WAVE (WebAIM) Seeing issues laid right on top of your page, great for learning Free Beginner
ARC Toolkit (TPGi) Deep expert inspection of structure, headings, and ARIA Free Intermediate to advanced
Chrome DevTools accessibility pane Viewing the actual accessibility tree and each element's computed name and role Free Intermediate
A real screen reader (NVDA on Windows, VoiceOver on Mac) The truth. Hearing your site the way it is actually experienced Free Any, with practice

Start by running your own Lighthouse scan. In Chrome, open DevTools, find the Lighthouse tab, and run the accessibility category. For the new AI readiness checks, run the agentic browsing category in Chrome Canary. Write down your two scores. That is your baseline, and that is the number we move.

Here is the honest part most agencies will not tell you. Automated tools only catch a portion of real issues, never all of them. They cannot tell you whether your “Submit” button makes sense in context, or whether your heading outline actually tells a story. That judgment is human. So the automated scan is where you start, not where you stop. The real test is closing your eyes, turning on a screen reader, and trying to use your own site. It is humbling the first time. It is also the single most clarifying thing you can do for your business online.

What Catches accessibility Issues infographic. Full alt text in caption.
A horizontal bar chart explains why automated accessibility scans are not enough. The first bar, labeled “Automated tools,” is about one-third full and says it catches only a portion of issues. The second bar, labeled “Expert manual review,” is about two-thirds full and says it catches many more. The third bar, labeled “Real screen reader testing,” is completely full and says it reveals the full picture. The graphic emphasizes that accessibility testing is strongest when automated tools, expert review, and real assistive technology testing are used together.

How to fix it in Webflow

Good news for Webflow users. Almost everything here is built into the platform if you use it the way it was designed.

  • Set the right tags. Use the Heading element for headings and set the correct H1 through H6 level, rather than styling a text block to look big. Use real Button and Link elements. For structure, set your section and div tags to header, nav, main, and footer so your page has true landmarks.
  • Add alt text in the asset settings. Give meaningful images a short, accurate description, and mark decorative images as decorative so they stay quiet.
  • Label your forms. Use real form labels tied to each field. Do not rely on placeholder text as the only label.
  • Name your icon buttons. If a button is just an icon, give it an accessible name with an aria-label custom attribute or visually hidden text, so it is not announced as a nameless button.
  • Fix your heading order. One H1 per page, then a logical outline. Style with classes, not with heading levels.
  • Keep keyboard access and focus. Make sure every interaction works with the keyboard, and keep a visible focus state on interactive elements.
  • Test the published page. The Designer is not the final word. Publish, then run Lighthouse and a screen reader on the live page.

Four myths worth retiring

  • “ARIA fixes everything.” No. The first rule of ARIA is to avoid it when a native HTML element will do. Bad ARIA actively breaks the accessibility tree and is worse than none. Reach for the real element first.
  • “Accessibility is just legal compliance.” It used to be framed that way. Now it is also how people, search engines, and AI all read your site. Compliance is the floor, not the ceiling.
  • “If it looks fine, it is fine.” The visual page and the accessibility tree can tell completely different stories. The whole point of this article is that the gap between them is exactly where you lose people and AI.
  • “If it works with my mouse, it works for everyone.” Not true. Plenty of people never touch a mouse. They navigate by keyboard, by switch device, or by screen reader. AI agents do not use a mouse either. They move through your page using the accessibility tree and the focus order. Everything that works with a mouse must also work with a keyboard, or you lock out real people and every agent at the same time.

The bottom line

You do not need to chase a hundred AI hacks. You need a website that is honest in its code, so that people, search engines, and AI can all understand it. The accessibility tree is where that begins, and it is now the number one signal of whether your site is ready for the AI era. Build it well once, and you earn three things at the same time: a site real people can use, a site search can read, and a site AI can recommend.

That is not a trend. That is just good building.

See where your site stands

This post is about the number one factor in your agentic browsing score. Want to see your actual scores? Get a free AI Visibility Report from certified accessibility and Webflow specialists. We will manually check how your business shows up when people ask Claude for a recommendation, then explain your new Lighthouse agentic browsing scores in clear, plain language. You get a personalized report within 24 hours. No sales pitch, just value.

Request yours at gracefulwebstudio.com/ai-visibility-report.

Next in the series, Part 2: Layout Stability, why a jumpy page confuses both people and AI, and the popular design trends that are quietly failing this test.

Written by Crystal Scott, Certified Professional in Web Accessibility (CPWA), Certified Webflow expert and founder of Graceful Web Studio.

Your Website Deserves Better, Let's Team Up

We would love to meet with you face-to-face. Whether virtually or for a coffee. Book a call, and let’s find the right solution for you! We review your site, map goals, and then deliver a clear plan and quote.