I would like to import all of my python files into Robot framework. Currently, I am referencing the files with their entire paths. Instead of that, is there any way to call all the required files in one line? Perhaps by importing all library paths in Robot framework.
Here is an example...
My python scripts are in these locations..
/user/home/scriptLibrary/sample.py
/user/home/scriptLibrary/sample_1.py
and I want to import all python files in Robot script. I am currently hard coding the entire path in the beginning of the script.
/user/home/scriptLibrary/sample.py
/user/home/scriptLibrary/sample_1.py
.
.
.
/user/home/scriptLibrary/sample_n.py