Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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();
share|improve this question

2 Answers

up vote 2 down vote accepted

HtmlUnit allows you to do this.

share|improve this answer
just want a wanted, although Selenium is also cool – mrblah Jan 5 '10 at 4:56
btw, does this work without having a browser actually running on the computer? – mrblah Jan 5 '10 at 4:57
yes, it does. It's "headless" – Bozho Jan 5 '10 at 4:57

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

share|improve this answer
wow, things are all free in the java world! – mrblah Jan 5 '10 at 4:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.