-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Efficient Detection of Interactive Elements using computed cursor style #1031
Efficient Detection of Interactive Elements using computed cursor style #1031
Conversation
- Remove unused window.getComputedStyle call. - Add a much faster check for interactive element using cursor pointer which cut short the function for 90% of the cases.
Upon Testing the new changes on some commonly used websites internationally, these are the results I found:
|
I adapted this code change to a similar project and seems to work great. Good job OP. |
@teddybear082 Hey thanks teddy, This code is tried and tested on production environments as well, hopefully it can be merged to browser-use |
Oh wow, that's really smart!! Thanks man |
@Rahul-Sharma-1729 thanks again for this. Out of curiosity what is your day job? Do you work on browser automation? |
@pirate Hey, I'm a software engineer at an AI startup. |
nice nice, well if you're ever looking for work or interested in switching you should DM me: x.com/theSquashSH 😉 |
Background
In most web applications, developers or frameworks provide visual cues to indicate interactive elements. One common approach is changing the cursor style when hovering over such elements. This helps users quickly identify elements they can interact with.
Upon analyzing widely used websites such as Amazon, Google, eBay, Salesforce, Reddit, Google Docs etc., I observed a consistent pattern: interactive elements typically have cursor styles that differ from the default pointer, signaling interactivity.
Implementation
To enhance this behavior, I have implemented the doesElementHaveInteractivePointer function. This function determines whether an element has an interactive cursor by inspecting its computed cursor style via window.getComputedStyle().
Key advantages of this approach:
This implementation ensures a lightweight and efficient way to detect interactive elements, aligning with best practices in web development.