Skip to content

Latest commit

 

History

History
33 lines (31 loc) · 864 Bytes

File metadata and controls

33 lines (31 loc) · 864 Bytes

CS 4501 Software Testing

Selenium Testing, Extra Credit

Getting started

  1. Clone the repo
  2. Install needed packages with pip
    pip install -r requirements.txt
  3. Migrate DB using:
    python manage.py makemigrations
    python manage.py migrate
  4. Insert data using fixture provided
    python manage.py loaddata fixture.json
  5. [Optional] Run server
    python manage.py runserver
  6. [Demo] Run tests
    python manage.py test selenium_tests

Notes