From d3234ce027605a6c2461559ddb76b8f2fd8c97ca Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Tue, 14 Oct 2025 09:52:34 +0200 Subject: [PATCH] feat: add new dependencies for enhanced functionality Adds `requests`, `faker`, and `python-dotenv` to the project. These libraries improve HTTP request handling, enable data generation for testing, and manage environment variables, respectively. This enhancement aims to streamline development and testing processes. --- requirements.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/requirements.txt b/requirements.txt index 4b3a177..1d394be 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,3 +8,6 @@ robotframework-appiumlibrary==3.1 robotframework-databaselibrary==2.3.2 robotframework-httplibrary==0.4.2 robotframework-http-rabbitmq==1.0.3 +requests==2.32.5 +faker==37.11.0 +python-dotenv==1.1.1 -- 2.52.0