axnode: ignore hidden input

This commit is contained in:
Pierre Tachoire
2026-01-15 13:22:15 +01:00
parent b51cca5617
commit d126d2a0f9

View File

@@ -799,6 +799,13 @@ fn isIgnore(self: AXNode, page: *Page) bool {
return true; return true;
} }
}, },
.input => {
// Check for hidden inputs
const input = elt.as(DOMNode.Element.Html.Input);
if (input._input_type == .hidden) {
return true;
}
},
else => {}, else => {},
} }