autopy
autopy copied to clipboard
A simple, cross-platform GUI automation module for Python and Rust.
Hello, I try tu make small robot where I need to use hot-keys like Win+D but didn't work, for this case I used **autopy.key.tap("d", [autopy.key.Modifier.META])** but just wrote "d" in...
On some monitors, the first call of `autopy.mouse.location()` can return a different set of coordinates on the first call than all subsequent calls, which remain consistent. # Reproduction steps 1....
Traceback (most recent call last): ``` File "/home/user/script.py", line 366, in autopy.mouse.move(500, 550) AttributeError: module 'autopy' has no attribute 'mouse' ``` ubuntu 20 Any idea how to fix this?
Yesterday I found something interesting that seems to be a bug in Autopy. I have the following script, trimmed down to just what's necessary to reproduce the bug, to convert...
File "c:/Users/X/Documents/GitHub/autopy/examples/hello_world_alert.py", line 1, in import autopy ModuleNotFoundError: No module named 'autopy' PS C:\Users\X\Documents\GitHub\autopy> Can't figure out what happened. Potentially a rust issue?
Is there intention to support mouse scroll wheel?
Hi, First of all, great work in creating this and thank you for releasing this under MIT/Apache 2.0 license. Much appreciated. I was wondering if it was possible to use...
Hi, msanders. First of all, I want to thank you for sharing this wonderful tool. I want to combine autopy with tesseract to do OCR on-the-fly without saving the image...
Multiple display support is currently missing but would be nice to add.
In the example of my code, `autopy` always has access to the upper display. Is it possible to have `autopy` control on each display? ``` from pyvirtualdisplay import Display import...