Registration and login system for Brightsquid Capstone.
Stack used: MongoDB, Express, React, Node.js
This project was bootstrapped with Create React App.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
This is assuming that you've cloned the repository and that you have npm
installed.
You will need to open 2 terminals for this. Starting with the backend, then following the frontend.
- Select one of the terminals
- Go into the
\server
folder of the repository - Install all packages required using
npm i
- Then run
npm run dev
for development server
- Select the other terminal
- Install all packages required using
npm i
- Then run
npm start
and the frontend will get displayed
Setup a Python Virtual Environment for Testing
Create a virtual environment (venv) to avoid cluttering the computer with unncessary packages.
Run the following to create the venv:
Bash
:
source [venv name]/Scripts/activate
To exit:
deactivate
Install your packages while in the venv.
To install the packages from a requirements.txt
file:
python -m pip install -r requirements.txt
To save the packages in a requirements.txt
file:
pip freeze > requirements.txt
- Open a terminal\
- Install Python bindings for Selenium:
pip install selenium
- Open the project folder:
cd brightsquid-capstone
- Go into the
tests
directory of the project folder - To run all tests on each page, run:
python .\registration_tests.py
- (Optional) Run only tests for Welcome Page:
python .\registration_tests.py WelcomePageTests
- (Optional) Run only tests for User Registration Page:
python .\registration_tests.py RegistrationPageTests
- (Optional) Run only tests for Practice Details Page:
python .\registration_tests.py PracticeDetailsPageTests
Note: tests will run on Chrome. If you’re wanting to change the type of browser you wanted to run own (i.e. to Firefox), open registration_tests.py with a text editor, CTRL+F and search for webdriver.Chrome() and change it to webdriver.Firefox()
More information can be found here: https://selenium-python.readthedocs.io/installation.html