Your Browser Automation Clicks Might Be Landing 25% Off — And Nothing Will Tell You An engineer spent a day pointing an AI agent at a browser to publish a product across four marketplaces and encountered five silent failure modes, the worst being clicks landing off-target due to a coordinate space mismatch between screenshot and CSS pixels. By injecting a probe button with a click counter, the engineer measured a scale factor of 0.7484 and fixed all interactions. The engineer warns that such bugs produce no errors and recommends verifying coordinates with a probe at the start of every session. I spent a day pointing an AI agent at a browser to publish one product across four marketplaces. Most of it worked. The parts that didn't work failed in the worst possible way: silently , with no error, no exception, and no log line. Here are the five failure modes I hit, in the order I hit them, and the probe that turned the worst one from "this site is broken" into a two-line fix. Everything below is from one working session. No hypotheticals. I asked the agent to click a menu item. The tool reported success: computer:left click Clicked at 383, 734 Nothing happened. No menu opened, no network request fired, no console error. I re-read the DOM — the element was there, visible, not disabled, not covered by an overlay: js const el = document.elementFromPoint 383, 734 ; // =