Tools Similar to PyAutoGUI for Automating Desktop Applications

alooma

Newbie
Joined
Dec 14, 2023
Messages
24
Reaction score
5
While I am familiar with many Python automation modules, I haven't come across one that excels in automating PC applications or interfaces. PyAutoGUI is a great tool, but it has limitations, particularly in terms of inspecting elements. It primarily works by image recognition or positional tracking, both of which can be unreliable due to changes in position or similarities in images. A more robust solution would ideally allow for element inspection, making it more adaptable to dynamic interfaces.
 
I have AutoGPT and have heard of macros. RPA bots can handle lots of web tasks.

This about AutoGPT:
"In short, while AutoGPT is capable of assisting with automation on a conceptual level, performing fully hands-off, automated tasks (especially system-level ones like software installation or payment processing) is still a challenge and would likely need external systems or additional programming to make it completely hands-free."
 
I have AutoGPT and have heard of macros. RPA bots can handle lots of web tasks.

This about AutoGPT:
"In short, while AutoGPT is capable of assisting with automation on a conceptual level, performing fully hands-off, automated tasks (especially system-level ones like software installation or payment processing) is still a challenge and would likely need external systems or additional programming to make it completely hands-free."
You said web task, I'm looking for a module that handle system interface itself, moving from one app to another.
 
A good ai VISION model can help you in achieving your goal.

You can PM me if you would like to discuss further on it.
 
PyAutoGUI is good , but have you tried Tkinter?
 
I am here watching this thread for more solutions, have you heard of batch files?

"Alternatively, a batch file could handle simpler tasks like opening applications, running scripts, or managing files as part of your automation process. It complements tools like PyWinAuto by executing command-line operations seamlessly." - GPT
 
While I am familiar with many Python automation modules, I haven't come across one that excels in automating PC applications or interfaces. PyAutoGUI is a great tool, but it has limitations, particularly in terms of inspecting elements. It primarily works by image recognition or positional tracking, both of which can be unreliable due to changes in position or similarities in images. A more robust solution would ideally allow for element inspection, making it more adaptable to dynamic interfaces.
i knew its name i forgot. i will come back and post its name.
 
PyAutoGUI is good , but have you tried Tkinter?
Tkinter is not an automation tool.
While I am familiar with many Python automation modules, I haven't come across one that excels in automating PC applications or interfaces. PyAutoGUI is a great tool, but it has limitations, particularly in terms of inspecting elements. It primarily works by image recognition or positional tracking, both of which can be unreliable due to changes in position or similarities in images. A more robust solution would ideally allow for element inspection, making it more adaptable to dynamic interfaces.
I think the most popular alternative would be AutoHotkey, but if you want to use python then you should use PyWinAuto
 
Back
Top