Reputation: 69
As we all know, filling out the web forms automatically is possible using JavaScript. Basically, We find the ID of related element using Inspect (Ctrl + I) in i.e Chrome and write a javascript code in the chrome console to automate what we want to do by code.
Just like that, is it possible to automate desktop apps using python? if yes how ?
Upvotes: 1
Views: 1384
Reputation:
Pywinauto is a GUI automation library written in pure Python and well developed for Windows GUI.
Upvotes: 0
Reputation: 1053
You can do this in python using selenium. Selenium is an open-source testing tool, used for functional testing and also compatible with non-functional testing. You can refer to this link to get started.
Upvotes: 1