controlsHeaven
controlsHeaven

Reputation: 69

Any way to automate desktop GUI using Python just like automating web forms with JavaScript?

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

Answers (2)

user12541086
user12541086

Reputation:

Pywinauto is a GUI automation library written in pure Python and well developed for Windows GUI.

Upvotes: 0

Aditya Joshi
Aditya Joshi

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

Related Questions