I got the following problem: I am running a JUnit testCase with Selenium 2.9 using HtmlUnitDriver with Browserversion Firefox_3_6. JavaScript is enabled. Now when it should
Well, There is an easy way to enable browser capability and javascript, you can do the following:
Webdriver driver = new HtmlUnitDriver(BrowserVersion.Chrome,true);
True specifies that javascript should be enabled. @Glenn Nelson,