CLAUDE LABJP
MCP — Support for the 2026-07-28 spec is rolling out across Claude. The protocol moves from bidirectional and stateful to request/response, so MCP servers can now live on serverless and edge infrastructureEXTENSIONS — Three official extensions have landed: MCP Apps for server-rendered UI, Tasks for async and long-running work, and Enterprise Managed Auth for IdP-based org-wide provisioningADOPTION — MCP passed 400 million monthly SDK downloads, roughly 4x growth this year, settling into its role as the standard way to connect agents to applicationsQUOTA — Today, August 19, is the last day of the 50 percent weekly usage boost for Claude Code subscribers. If you have long agent runs queued, this is the windowPRICING — Claude Sonnet 5's introductory rate of $2 per million input tokens and $10 output ends August 31; standard pricing of $3 and $15 takes over on September 1, twelve days outFIX — A bug where MCP v2 connections endlessly reopened subscriptions against servers with fixed timeouts is resolved, and a forward_user_identity setting was added for user attributionMCP — Support for the 2026-07-28 spec is rolling out across Claude. The protocol moves from bidirectional and stateful to request/response, so MCP servers can now live on serverless and edge infrastructureEXTENSIONS — Three official extensions have landed: MCP Apps for server-rendered UI, Tasks for async and long-running work, and Enterprise Managed Auth for IdP-based org-wide provisioningADOPTION — MCP passed 400 million monthly SDK downloads, roughly 4x growth this year, settling into its role as the standard way to connect agents to applicationsQUOTA — Today, August 19, is the last day of the 50 percent weekly usage boost for Claude Code subscribers. If you have long agent runs queued, this is the windowPRICING — Claude Sonnet 5's introductory rate of $2 per million input tokens and $10 output ends August 31; standard pricing of $3 and $15 takes over on September 1, twelve days outFIX — A bug where MCP v2 connections endlessly reopened subscriptions against servers with fixed timeouts is resolved, and a forward_user_identity setting was added for user attribution
Articles/Cowork
Cowork/2026-05-06Intermediate

Claude in Chrome Not Working? A Practical Troubleshooting Guide

Buttons that do nothing, pages that never load, tasks that report success but change nothing. Symptom-by-symptom fixes, plus the 42-run log where adding waits and verification steps moved completion from 62% to 95%.

Claude in Chrome14Cowork33troubleshooting87errors2debugging8

Premium Article

You set up Claude in Chrome, wrote a careful prompt, and then — it stopped halfway through. Or the button click did nothing. Or the page loaded but Claude couldn't read it.

When I first handed my weekly AdMob report pull to Claude in Chrome, two out of every five runs died somewhere in the middle. I rewrote the prompt again and again without ever establishing where things were actually breaking.

The pattern turned out to be simpler than I expected. Almost none of the failures were about Claude's capability. They came from a mismatch between the state of the page and the assumptions baked into my instructions.

This guide walks through the most common issues by symptom, and includes the numbers from three weeks of running the same task.

Buttons Don't Respond When Clicked

Claude reports "I clicked the button" but the page doesn't change, or nothing happens at all.

Common causes:

The most frequent culprit is timing: the button is rendered dynamically, and Claude tries to click it before it actually exists in the DOM. Another cause is how the click handler is wired up — if it uses addEventListener instead of a simple onclick attribute, Claude's simulated click may not fire the event correctly. And occasionally, an element is visually present but sits behind a transparent overlay that intercepts clicks.

What to try:

Start with the simplest fix: ask Claude to reload the page and try again. If that doesn't help, add an explicit wait in your prompt — "wait 3 seconds after the page loads before clicking" gives the DOM time to settle. You can also experiment with keyboard navigation, which is often more reliable than click simulation for interactive elements. Try: "press Tab to focus the button, then press Enter to activate it." For dropdown menus and custom components, specifying the element by its visible label text usually works better than trying to click by position.

Pages Don't Load Correctly or Can't Be Scrolled

Claude says it opened the page but can't read the content, or infinite scroll doesn't work and only the first screen of content is retrieved.

Typical scenarios:

Infinite scroll pages are a common pain point — Claude fetches the initial load and stops, missing everything below the fold. Single-page applications (SPAs) are another: the URL changes, but the content hasn't updated in the DOM yet when Claude reads it. There's also the basic case where Claude starts interacting before the page finishes loading.

What to try:

For slow-loading pages, add an explicit wait instruction: "wait until the page is fully loaded before reading." A prompt like "confirm the page title before proceeding" forces Claude to verify the page is ready.

For infinite scroll, break it into steps: "scroll down three times, then read the visible content." You can repeat this pattern to collect data across multiple scrolls without overloading a single instruction.

For SPAs, after navigation prompt Claude to "re-read the current page content" — this triggers a fresh DOM capture rather than using a cached state from the previous page. If the content still looks stale, try navigating directly to the target URL rather than clicking through the app.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
A three-week, 42-run measurement showing how explicit waits and verification steps moved task completion from 62% to 95%
A ready-to-run Node preflight script that catches MCP port conflicts, missing environment variables, and unreachable servers before a task starts
A five-step isolation procedure and a symptom-to-fix priority table for deciding what to try first
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Claude Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

Related Articles

Cowork2026-05-29
Three Weeks of Letting Claude in Chrome Tune My AdMob Mediation Priorities
I let Claude in Chrome handle the reordering of AdMob mediation priorities for three weeks. Here is how I set the threshold, the three prompt changes that actually mattered, the numbers, and the parts I deliberately kept under human control.
Cowork2026-05-28
Folding AdMob and Crashlytics into One Morning Check via Cowork Scheduled Tasks — Two-Week Notes
I had been checking AdMob fill rates and Crashlytics surges in two separate dashboards each morning. I folded them into a single Cowork scheduled task. Here are my two-week notes, with the numbers and the friction I ran into.
Cowork2026-05-23
When pip install Stops with externally-managed-environment in Cowork's Bash Sandbox — Three Patterns for PEP 668
Why pip install fails with externally-managed-environment in Cowork's Bash sandbox, and three practical fixes — --break-system-packages, venv, and pipx — written from real scheduled-task experience.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →