tags:

views:

28

answers:

2

is there a java UI testing tool (web) that converts the DOM into a java object of sort?

So I can do something like:

browser.GoToPage("google").FindButton("search").click();
+2  A: 

HtmlUnit allows you to do this.

Chandra Patni
just want a wanted, although Selenium is also cool
mrblah
btw, does this work without having a browser actually running on the computer?
mrblah
yes, it does. It's "headless"
Bozho
+1  A: 

Take a look at Selenium - it has a very useful tool + an API.

Bozho
wow, things are all free in the java world!
mrblah