In Selenium tests with Django 1.4+ we saw how to run Selenium tests on Django 1.4+ based projects.
However, these tests were run on a single Web Driver, ie. a single browser.
Fortunately, Selenose 1.3 makes it easy to test on multiple browser. Let's switch the single browser tested project to a multiple browser tested project.
Sample project
Let's use the same poll application from the Django tutorial.
The source code can be found on the django14-selenose branch of this repository. Clone it with:
$ git clone -b django14-selenose https://github.com/shiningpanda/djangotutorial-selenium.git
Then ...