-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Checkbox Input Elements Not Detected as Clickable by Agent #1153
Comments
Did you install the tagged release 0.1.40 or just the code on I ask because we pushed a bunch of fixes for element detection about ~10hr ago right around when you opened this. If you think you might have used the older code, can you re-test with the latest code on main? Thanks! |
I'm experiencing the same issue, so followed the suggestion of testing the code directly on main. However it appears to be buggy as it's now clicking on random links embedded within iframes on the page. For instance the site we are testing includes the Stripe SDK, as well as YouTube videos. Browser-use is somehow randomly clicking links within the Stripe iframe that the SDK loads (which is not even visible) and randomly opening tabs to https://m.stripe.network/. It also randomly opened a tab directly to a YouTube video that was being embedded. This errant behavior does not exist in release 0.1.40 |
Thank you for reporting, I recently added beta support for cross-origin iframes and it appears it's causing these issues. I will revert my change for now until the feature is improved to ignore invisible iframes. |
Ah I see. OK happy to test again when the changes have been reverted. Appreciate the incredibly quick response. Thank you! |
It is reverted @djwealthblock #1161 |
Great, thanks. I can confirm that the iframe issue no longer exists. In addition, the main branch does have significantly more coverage of clickable elements, which also resolves my initial issue. |
oh whoops closed too fast, @Noam5 is your issue still present on the latest |
After investigating, I was able to solve this problem by modifying the buildDomTree.js code to ensure all input elements are properly handled. The issue was occurring because Angular-generated form controls weren't passing all the visibility and element position checks in the DOM extraction pipeline. The fix was to add special handling for input elements right after the nodeData object is initialized in the buildDomTree function:
This approach ensures that all input elements (including checkboxes) are always treated as visible, interactive elements regardless of their CSS properties, position in the DOM, or framework-specific attributes. |
Actually when using the latest main branch the problem seems to be solved |
Bug Description
Description
The browser-use agent is unable to identify and interact with certain checkbox input elements. Specifically, Angular-generated checkbox inputs are not being framed as clickable elements like other interactive elements on the page.
Environment
browser-use version: 0.1.40
Element Not Being Detected
<input _ngcontent-c11="" autocomplete="off" formcontrolname="agreedToMarketing" id="chkAgreeToMarketing" name="agreedToMarketing" required="" type="checkbox" class="ng-untouched ng-pristine ng-invalid" style="">
Expected Behavior
The agent should identify this checkbox as a clickable element and be able to interact with it (check/uncheck) like it does with other interactive elements on the page.
Actual Behavior
The agent does not recognize or frame this checkbox as an interactive element, making it impossible for the AI to interact with forms requiring checkbox confirmation.
Additional Context
This issue occurs consistently with Angular-generated checkbox inputs that have classes like "ng-untouched", "ng-pristine", and "ng-invalid". The agent seems to have difficulty recognizing these specific form elements as interactive.
Reproduction Steps
Set up an agent with either gemini-2.0-flash-exp or gemini-2.5-pro-exp-03-25
Direct the agent to a page containing Angular-generated checkboxes (particularly those with ng-* classes)
Observe that the agent cannot identify or interact with these checkboxes
Code Sample
Version
0.1.40
LLM Model
Other (specify in description)
Operating System
Windows 10
Relevant Log Output
The text was updated successfully, but these errors were encountered: