Commit bf91a6fc authored by Patrick James Ong's avatar Patrick James Ong

Placed basic code in functional_tests

parent da6f3fc8
Pipeline #1044 failed with stages
import unittest
from selenium import webdriver
class NewVisitorTest(unittest.TestCase):
def setUp(self):
self.browser = webdriver.Chrome()
def tearDown(self):
self.browser.quit()
if __name__ == '__main__':
unittest.main(warnings='ignore')
\ 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