Skip to content
All fingerprint checksAutomation surface

the clicks this page received were real clicks

Check id interaction-click-trust

What an ordinary browser yields

Every click on the gate trusted. A keyboard-activated click is trusted too and is reported, not penalised (severity: warn).

What a detector infers

Event.isTrusted is set by the engine when it dispatches an event it generated itself, and it cannot be set from script - a constructed MouseEvent is false, and element.click() produces a synthetic click that is false too. So a click arriving at a listener with isTrusted false did not come through the browser's input pipeline, whatever produced it. Measured on Chrome 150 against SeleniumBase 4.51.3 UC mode: clicking a <button> by CSS selector went through CDP Input.dispatchMouseEvent and produced a full trusted sequence indistinguishable from a mouse; clicking an <h3> produced isTrusted false, detail 0, clientX 0. The cause is a hardcoded tag whitelist in the wrapper - a, button, canvas, div, input, label, li, path, span, svg get the native path and every other element gets element.click(). Two further conditions in the same branch send even a whitelisted tag down the synthetic path: a selector that locates the element by its text rather than by CSS, and any page on a google domain. What this deliberately does NOT score is detail, clientX or pointerType: pressing Enter or Space on a focused button produces a trusted click with detail 0, clientX 0 and pointerType empty, byte-identical to element.click() on every field except isTrusted. Scoring the shape rather than the trust flag would fail every keyboard-only visitor, which is both a false positive and an accessibility failure.

How to resolve it

Drive clicks through the input pipeline - CDP Input.dispatchMouseEvent with a mousePressed/mouseReleased pair at the element's centre - rather than calling element.click(). If you are using a wrapper, check whether it degrades to element.click() for the element type or the selector style you used; several do so silently. Nothing to fix for a person clicking normally, with a pointer or a keyboard.

Nearby checks in Automation surface

See all 27 checks in Automation surface
Who builds this test

Clearcote is a browser built for fingerprint coherence

It is a Chromium fork, maintained by the same people who wrote this reference. It ships as a compiled browser rather than as a stealth script injected into someone else's — which is a description of how it is built, and is not an argument about how it behaves on this check.

This audit takes no position on how Clearcote scores on Automation surface checks, on this one, or anywhere else. It has no baseline corpus of other people's fingerprints to rank you against and no vendor scoreboard — nearly every check is self-referential, asking one browser the same question through two independent APIs and reporting whether both answers can be true at once. It runs identically on any browser, including ours. Run it on yours and read the result yourself.

See the other checks in Automation surface — the family interaction-click-trust belongs to.