When & why to use PyAutoGUI

PyAutoGUI is one of the framework you can use to test desktop applications. Consider a case where you need to test a flow of the application and it is not in browser, you can go for PyAutoGUI. Selenium is another framework that comes to the mind when we talk about any type of testing automation but it only supports browser based automation. Selenium can not have control over locally running non-browser app. ...

May 2, 2022 · Pranav Gore

Python code translator 2 to 3

Upgrade today!! Let’s talk about Python 2to3 , an automated code translator. This is a great tool to convert your python2 project to python3. Why you should move to python 3.x? Checkout https://pythonclock.org/ (If that link is no more available, I have added the screenshot below) Python 2 reached end of life (EOL) on January 1st, 2020 And python3 supports typing (:heart_eyes:) and a lot more (will cover it some other time). ...

May 27, 2020 · Pranav Gore