Repo for Quality Assurance course of Activity 08
The project used to test the login functionality was a project done for a University course, check it in this repo.
The project used to test the shopping functionality was an ecommerce project found online, you can check it out here.
Python version: 3.12.2
It is best practice to setup a virtual environment to work with Python projects, for more information on how to make a virtual environment.
python -m venv venv
For Windows:venv\Scripts\activate
For MacOS/Linuxsource venv/bin.activate
Install dependenciespip install -r requirements.txt
To deactivate the virtual environment:deactivate
After installing the dependencies, run the following command to test:
# Test login (need to deploy the LabFlow project locally)
python test-login.py
# Test shopping
python test-shopping.py