Does structure of page change when
htmlcleaner cleans it?
According to the intro example on http://htmlcleaner.sourceforge.net/, HTMLCleaner certainly can change the structure of the page when cleaning up. In that example it adds html and body elements, and moves the h1 element out of the table.
Why don't you run HTMLCleaner on the page and look at the output from it? Then you'll be able to tell whether and how the structure has changed.
Is there some way to avoid it or in
other words, keep DOM generated by
HtmlCleaner as close as possible to
DOM built by browser.
You could do this by specifying a modified tag info set, different from the default one. This is apparently what configures the "corrections" of the DOM. (See here for how to use it, if you're using the command-line interface.)
Or if you could suggest some another
html parser, whose DOM is very close
to DOM by browser, so that xpath
generated by XPather plugin would fail
very rarely.
I would try HTML Tidy and see what it does to the DOM. It's a widely used and mature program for tidying up scraped HTML.