I'm using the htmlunit driver with selenium 2 but when the following call is made in my test: driver.get(startPage); It returns:
<?xml version="1.0" encoding="ISO-8859-1"?> <html> <head/> <body/> </html>
Here is docs http://seleniumhq.org/docs/04_webdriver_advanced.html: C# code
ICapabilities desiredCapabilities = DesiredCapabilities.HtmlUnit(); IWebDriver driver = new RemoteWebDriver(desiredCapabilities); ...
has anyone used HTML unit with TestNG invocation count and thread pool size. I drive all my selenium2 tests with testNG and have been playing around with running HtmlUnit tests in ...