0

I've tried to automate mouse drag with pyautogui by launching this code:

 pyautogui.dragTo(1900, 500, 0.1, button='left')

But instead of performing it with 0.1 seconds it takes much longer. How to automate mouse drag with high velocity? Maybe fix something with pyautogui or anyone knows another lib?

Daniil Kunin
  • 143
  • 1
  • 12

2 Answers2

1

I have tried the code, and it seems instantaneous, you might try pyautogui.dragTo(1900, 500, 0, button='left')

Anonymous
  • 528
  • 3
  • 17
0

So I found the only one solution - HumanClicker, it's not that smooth

Daniil Kunin
  • 143
  • 1
  • 12