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.