What python Automation module interacts with another program in a separate window?
You can automate a boring task using PyAutoGUI module one python. However, the thing is, once you run that script you basically can't touch your computer. You have to sit there and watch the boring ass script execute.
With the selenium module, you can automate browser tasks. You can minimize the selenium controlled browser and play a game while it still does all the automated tasks in the minimized window.
My question is, is there a module or some sort of solution where I can automate a program like Photoshop or Microsoft word etc in a controlled window like it does in the selenium controlled browser? This way, I can minimize the controlled window and do other shit on my computer (like play a game or watch netflix). I just mouse use and keyboard use.
(I know I can run the script in a virtual machine, but that shit takes up loads of resources and I want to use the full potential of my graphics card).
Or if there isn't a solution in Python, another language?
With the selenium module, you can automate browser tasks. You can minimize the selenium controlled browser and play a game while it still does all the automated tasks in the minimized window.
My question is, is there a module or some sort of solution where I can automate a program like Photoshop or Microsoft word etc in a controlled window like it does in the selenium controlled browser? This way, I can minimize the controlled window and do other shit on my computer (like play a game or watch netflix). I just mouse use and keyboard use.
(I know I can run the script in a virtual machine, but that shit takes up loads of resources and I want to use the full potential of my graphics card).
Or if there isn't a solution in Python, another language?
