Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.16 KB

README.md

File metadata and controls

38 lines (27 loc) · 1.16 KB

qa-activity08

Repo for Quality Assurance course of Activity 08

Test Login

The project used to test the login functionality was a project done for a University course, check it in this repo.

Test shopping

The project used to test the shopping functionality was an ecommerce project found online, you can check it out here.

Running the project

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.

Virtual Environment quick guide

  1. python -m venv venv
    For Windows:
  2. venv\Scripts\activate
    For MacOS/Linux
  3. source venv/bin.activate
    Install dependencies
  4. pip install -r requirements.txt
    To deactivate the virtual environment:
  5. deactivate

Running the project

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