I'm trying to make a simple python script that can use the keyboard to write / execute commands.
Example : open Photoshop and execute "select all and delete, then save" (control + a, delete, control + s) keys each after 1 second.
Example2 : open taskmanager (control + alt + del) use the N key to move to the N section in process and use end task (alt + e) every few minutes...
Moreover to create a function, while the python script is running if i hit alt+f1 (for example) it executes (control + alt + del)
Automate Python Script Using Windows Task Scheduler Give your task a name. Go to the “Tiggers” tab, change the settings to Daily, and make sure recur every 1 day since we want the bot to run every day. Also, make sure the Start time is in the past, otherwise, it won't run until that time comes.
But in this article, we are going to automate windows applications. So, to automate the windows application we are going to use Python. Python offers great readability and easy-to-learn syntax. In Python, we are going to use the Pywinauto module whose sole purpose is to automate windows applications.
In this article, we will explore how we can do GUI automation using Python. There are many modules that can do these things, but in this article, we will use a module named PyAutoGUI to perform GUI and desktop automation using python. Also, we would explore how we can automate the keyboard keystrokes.
In order to do this you need to integrate with the native messaging interfaces. Sikuli is a good test tool and so (as per @juxhin's suggestion) a sensible candidate if you can limit yourself to Jython.
However if you can't live with that, you'll probably need a different solution for Linux and Windows. For example:
You may want to try SikuliX. This is an image-based framework that can be used with Python (via Jython), Ruby (via JRuby) and Java (via the optional Java API).
It is very useful to automate certain behavior on your screen such as opening Photoshop, clicking regions on your screen or typing via the key. For example:
//Using Java API, however the idea is the same for Python
Screen screen = new Screen()
screen.type(new Pattern("some-image.png"), "keyboard");
In Python:
def changed(event):
print "something changed in ", event.region
for ch in event.changes:
ch.highlight() # highlight all changes
sleep(1)
for ch in event.changes:
ch.highlight() # turn off the highlights
with selectRegion("select a region to observe") as r: # any change in r larger than 50 pixels would trigger the changed function onChange(50, changed) observe(background=True)
wait(30) # another way to observe for 30 seconds r.stopObserver()
It is quite a bit of work, but it allows you to create very robust scripts that perform your desired actions. You may also pipe console output back to your Python script via subprocess
in order to change your scripts behavior based on the environment.
Rest is all limited by your imagination.
Note: Not EVERYTHING has to be done with SikuliX, infact I wouldn't recommend actually doing everything. Just certain things that may require specific behavior on your screen.
If you are strictly on Ubuntu, you may also want to look at Xpresser
So I have worked around with AutoIt and PyAutoIt and would genuinely think they are suitable tools for what you wish to achieve as they can be very potent against certain applications.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With