- The logic has changed. Selenium is started at the beginning of the SeleniumTestCase and is closed at the end. This means that the browser is closed and re-opened between test cases. There is no longer a global selenium variable; instead, SeleniumTestCase has a selenium attribute.
0.2.4
------------------
- Termination is now more robust. - Workaround a ghostdriver bug that prevents PhantomJS from terminating.
0.2.3
------------------
- The module can now be imported before setting up Django.
0.2.1
------------------
- Fixed login(), which was broken on Firefox 42.
0.2.0
------------------
- Added PageElement.wait_until_[not_]contains() methods. - SeleniumTestCase now derived from StaticLiveServerTestCase.