pydoll icon indicating copy to clipboard operation
pydoll copied to clipboard

[Feature Request]: Is it possible to control the mouse by events, press, drag and release?

Open cleitonleonel opened this issue 7 months ago • 2 comments

Checklist before requesting

  • [x] I have searched for similar feature requests and didn't find a duplicate.
  • [x] I have checked the documentation to confirm this feature doesn't already exist.

Problem Statement

I'm trying to move the mouse around the screen to simulate more human movement.

Proposed Solution

Something similar to the code snippet below:

action = ActionChains(driver)
action.click_and_hold(button).perform()
action.move_by_offset(move_x, 0).perform()
action.release().perform()

This resource was cited in this discussion https://github.com/orgs/autoscrape-labs/discussions/103

Alternatives Considered

No response

Additional Context

No response

Importance

Nice to have

Contribution

I could help with parts of the implementation

cleitonleonel avatar Apr 04 '25 11:04 cleitonleonel

hmm, nice idea! ill work on it in this weekend

thalissonvs avatar Apr 04 '25 14:04 thalissonvs

hmm, nice idea! ill work on it in this weekend

I've been looking at the Selenium codes and it seems to be something very useful and would make the library much more complete.

cleitonleonel avatar Apr 04 '25 14:04 cleitonleonel