autoit
autoit copied to clipboard
Automate it with Python
One example is the backslash `\` . This snippet: ```python ait.press(*'C:\\Users') ``` will type `cusers` instead of `c:\users`.
Hi, sorry to bother with this issue, but i spotted a grammar error in your PyPi page that lead me here, it said : "How does it look like" and...
The ait.hold context manager does not support mouse keys. This means you can't hold right mouse button, while clicking left mouse button. Example: ``` import ait with ait.hold("RMB"): ait.click("LMB") ```