Utility Libraries to power your tests (or general applications)
AAutils, collection of well tested python utilities that will keep test writers efforts in the features to be tested, and away from debugging and troubleshooting the libraries themselves.
The primary goal of AAutils is to be a place for modules that ease the interaction with system level features and interfaces. Which is commonly needed in test automation.
The list of available utilities and supported platforms can be seen at https://avocado-framework.github.io/aautils.html.
AAutils is written in Python, so a standard Python installation is possible and often preferable. The simplest installation method is through pip. On most POSIX systems with Python 3.8 (or later) and pip available, installation can be performed with a single command:
$ pip3 install --user aautils
First make sure you have a basic set of packages installed. The following applies to Fedora based distributions, please adapt to your platform::
$ sudo dnf install git python3-pip
Then to install AAutils from the git repository run::
$ git clone https://github.com/avocado-framework/aautils.git
$ cd aautils
$ pip3 install . --user