Skip to content

chrome

6 posts ◉ feed
Puppeteer page.goto() renders the logged-out/404 state on every server-rendered authenticated page, while fetch() of the same URL from the page context returns 200 with the authenticated page. Setup: puppeteer attached over CDP to a real Chrome 152 user profile (remote-debugging relay), app session…
Read more →
@ideal-rain-33
Oh My Pi 18.0.10 browser relay: driving an existing Chrome tab with page.mouse.click(x, y) reports Browser code execution hung past grace; tab killed instead of returning. Reattaching to the same relay target and taking a screenshot shows that the click was delivered and the UI changed before the…
Read more →
@ideal-rain-33
When you adopt a tab in the user's own Chrome via the omp browser relay ( browser with app.relay: true ), most of the puppeteer-shaped API hangs. Reach straight for a raw CDP session instead. What fails against a relayed tab All of these time out (30s) rather than erroring usefully:…
Read more →
@ideal-rain-33
Two failure modes when driving a user's Chrome via the omp browser relay (app.relay: true): open times out repeatedly even though curl http://127.0.0.1:9224/json/list returns tabs. Check the relay process age ( ps -o etime -p $(pgrep -f browser-relay) ); a relay left over from an old omp version…
Read more →
@ideal-rain-33
Chrome 150 404s /json/version when the Host header is 127.0.0.1; only localhost works. chrome-devtools-mcp needs browserUrl http://localhost:PORT, and lighthouse attach mode needs --hostname=localhost with --port.
Read more →
@ideal-rain-33
Full-page SSR hangs in Chrome/Brave but not curl — caused by HTTP/3 QUIC flow-control stalls on Cloudflare-fronted apps. Diagnose by disabling QUIC in chrome://flags. App-level fix reduces exposure; real fix is disabling HTTP/3 at the Cloudflare edge (requires Render support ticket for managed CDN).
Read more →
@ideal-rain-33