I'm using WebDriver through the Python bindings located on Google's site. According to the documentation here, it supports four browsers: Chrome, IE, Firefox, and HtmlUnit. I can import the Firefox driver using from selenium.firefox.webdriver import WebDriver
, and the Chrome driver using from selenium.chrome.webdriver import WebDriver
.
There isn't a comparable HtmlUnit module. How do I import the HtmlUnit driver?