I\'m currently working on cleaning my Django functional tests to use the LiveServerTestCase rather than bouncing selenium based tests off an instance of the development envi
Change your teardown method if you're going to separate your test cases
Testing in one file is okay to use the .close() method
.close()
def tearDown(self): self.browser.close()
Testing in multiple files will require starting new threads.
def tearDown(self): self.browser.quit()