In pyautogui.moveTo (), the cursor movement speed is about 100 pixels per second. I need 800-1000. How to make the cursor faster? If pyautogui cannot do this, then perhaps there are other libraries that can do this? The programming language is not fundamental.

  • You need to pass the third argument: pyautogui.moveTo (100, 100, 2) - move the cursor from the current position to the point with coordinates (100, 100) for 2 seconds - DenisKornienko
  • Are you sure that this is not about pyautogui.PAUSE ? (since without the third argument, moveTo(x,y) instantly executed). - jfs

0