Debugging Rendering with GSC URL Inspection

When a client-rendered page shows up as Crawled — currently not indexed or ranks for nothing, the first diagnostic is to see the page the way Googlebot saw it. URL Inspection in Search Console renders the URL in the same Web Rendering Service that builds the index, so its rendered HTML and screenshot are the authoritative answer to “did my JavaScript content make it in?” This is the ground-truth step in the SPA audit workflow.

Step-by-step fix

  1. Run a live inspection. Paste the URL into the Search Console inspection bar and choose Test Live URL to render it fresh.

  2. Read the rendered HTML, not the source. Open View Tested Page → HTML and search for your primary heading or body copy. Its presence or absence is the diagnosis.

    ❌ Rendered HTML contains only: 
    → content never rendered within budget; the route is effectively invisible. ✅ Rendered HTML contains your

    , body copy, and JSON-LD → content rendered; any indexing issue is elsewhere (canonical, quality).

  3. Check the screenshot and blocked resources. The screenshot shows what the renderer painted; the More Info → Page resources list shows anything that failed to load. A blocked bundle or API explains a blank render.

    More Info → Page resources → "Couldn't load: /api/products (blocked)"
       → the data the page needs is unreachable to Googlebot; unblock it in robots.txt or CORS.
  4. Compare live vs indexed. If the live test renders correctly but the indexed version does not, the fix already works and you can request indexing; if both fail, the problem is live.

Validation

  • View Tested Page → HTML contains your primary content for the inspected URL.
  • Screenshot shows the real page, not a spinner or blank frame.
  • Page resources lists no blocked critical scripts or APIs.
  • Request Indexing succeeds after a confirmed fix, and the URL moves to Indexed on recrawl.

Reference

URL Inspection diagnostic order:
1. Live test            → render as Googlebot now
2. View Tested Page     → rendered HTML + screenshot + resources
3. HTML search          → is the 

/ body / JSON-LD present? 4. Page resources → any "Couldn't load" entries? 5. Live vs Indexed → did a recent deploy change the outcome?

Frequently Asked Questions

Why does the URL Inspection screenshot look blank? A blank screenshot usually means Googlebot could not render your content within its budget — a blocked resource, a script error, or data that resolves too slowly. Check the More Info tab for blocked resources and the rendered HTML for whether content is present at all.

What is the difference between the live test and the indexed version? The live test renders the page right now, while the indexed version reflects the last time Google crawled and rendered it. Comparing them shows whether a recent change fixed or broke rendering before the next crawl picks it up.

← Back to SEO Audit Workflows for Client-Side Apps