Selenium 2

To the perfect testing framework for web applications.

The api is located at http://webdriver.googlecode.com/svn/javadoc/index.html?overview-summary.html
http://selenium.googlecode.com/svn/trunk/docs/api/java/overview-summary.html

What are new:
-Merge the best of Selenium and Webdriver.
-Complete change of the api.
-Bundle into a standalone jar.

Note: By default, Javascript for HtmlUnitDriver is disabled. Use setJavascriptEnabled() to enable like the followings:

HtmlUnitDriver driver = new HtmlUnitDriver();
driver.setJavascriptEnabled(true);

No votes yet