I want to run tests in Robot Framework with my defined directory structure
I would also like the following kind of directory structure for the robot framework tests:
Root directory
Libraries
Library.py
Resource Files
Resource.txt
Tests
test_1.txt
test_2.txt
However, I do not know how to write my tests so they can access my library and resource files. For example, how to import Resource\Resource.txt from Tests\test_1.txt.
Is there any possibility to globally set the directory of the Resources File in Pycharm without defining any variable in the test file? What i trying to do it just write only this:
Resource Resource.txt
in the test file
Best Regards