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

I found it very difficult to work with htmlunit in terms of creating new html content on the fly like we can do in jquery.

For example given a text node:

I am text

I want change that text node into (if the word is greater than 3 chars it is replaced with span):

I am <span>text</span>

After this I want to replace the original text node ( I am text) with

I am <span>text</span>

in the html document wherever it occurred.

So how can I achieve this using htmlunit? Is there better alternative to htmlunit in Java applications for screen scraping or modify dom on the fly type of applications?

In htmlunit I could not even find how to construct a new element as constructors are mostly missing or declared protected.

share|improve this question

2 Answers

up vote 3 down vote accepted

It's not clear what you want to do exactly, but HtmlUnit is a programmatic browser. Its API allows doing in Java what a user would do with his keyboard and mouse in a standard browser. And modifying the DOM of a web page is not what a user does with his browser.

Its API allows accessing the DOM tree anyway (though not via the W3C DOM interfaces), and you should thus be able to do in Java what you would do in JavaScript with the DOM. HtmlElement instances can be created through the createElement method of HtmlPage. But of course, there is no "JQuery in Java for HtmlUnit".

share|improve this answer

HtmlUnit lets you interact with a page via Java roughly the same way a human would interact with the page via a browser.

How would you modify the DOM in a browser?

You don't, not directly: instead you click or type to trigger Javascript in the page, which in turn modifies the DOM. Likewise, with HtmlUnit your Java code triggers Javascript in the page which in turn modifies the DOM.

share|improve this answer

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.