[Django]-Django with splinter and phantomjs is painfully slow

6👍

What makes the tests slow is open and close the browser on each test. A way to improve the tests time is open the browser once. You can do it using setUpClass and tearDownClass.

Leave a comment