Goal of the repository is to showcase some feature of Robotframework.
Recomended tool for editing robotframework test is Visiual Studio Code.
Extension to use:
The API test need a key from Openweathermap what you need to configure through the ./.env file.
API_KEY_WEATHER=api_key_goes_here
In order the run test on your local machine you need to:
- Install python^3.11.4
Then from the root folder of the repository install dependencies inside a virtualenviroment in order to not to mess with the system installed python):
> python -m venv .venv
Activate the newly created virtualenvironment
Type | Command |
---|---|
POSIX | > source .venv/bin/activate |
PowerShell | > .venv/bin/Activate.ps1 |
cmd.exe | C:\> .venv\Scripts\activate.bat |
Install packages
> pip install -r requirements.txt
Then run the run.py script:
>python run.py
Log files will be created under ./demo/log
EditorConfig helps maintain consistent coding style.
- Szegedi Ádám - Initial work - adamszegedi
This project is licensed under the MIT License - see the LICENSE file for details