Selenose provides a set of Selenium related plugins for nose developed by ShiningPanda:
- Selenium Server Plugin starts a Selenium Server before running tests, and stops it at the end of the tests.
- Selenium Driver Plugin provides a Selenium WebDriver to the tests.
The use of these plugins is detailed bellow, but let's have a look on the installation process first.
Installation
On most UNIX-like systems, you’ll probably need to run these commands as root or using sudo.
Install selenose using setuptools/distribute:
1 $ easy_install selenose
Or pip:
1 $ pip install selenose
It can take a while as Selenium ...