starting to work on tests.py for a new customer commit

parent fdd38349
from django.test import TestCase
import unittest
from django.urls import resolve
from selenium import webdriver
# Create your tests here.
class CustomerTest(unittest.TestCase):
def setUp(self):
self.browser = webdriver.Firefox()
def tearDown(self):
self.browser.quit()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment