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

I am using HtmlCleaner2.1 library for evaluating xpaths generated by XPather plugin against html to scrape content from it. But sometimes, HtmlCleaner fails to evaluate xpath.

For e.x. http://www.megaoutdoors.co.uk/norwegen-army-shirt-zipped-roll-top-collar-278-p.asp

For product title, xpath given by XPather is //body/div[11]/div[6]/div[2]/form/div[1]/h1 But this fails when I evaluate it using HtmlCleaner.

How could we overcome this problem. Does structure of page change when htmlcleaner cleans it?

Thanks
Jitendra

share|improve this question
@Jitendra: In general is not a good design choice for a document to claim XHTML validation being a not wellformed XML. – user357812 Dec 21 '10 at 15:48
In what way does it fail? (E.g. error message, gets wrong data, gets no data ...) – LarsH Dec 21 '10 at 17:04
@Alejandro, These websites are not ours, but we do have permission to scrape them. So we would have to scrape them in any case. – Jitendra Dec 22 '10 at 6:31
@LarsH, It fails in sense that on evaluating above xpath, It gives 0 nodes. – Jitendra Dec 22 '10 at 6:32
@Jitendra: Also do note that the DOM built by browser might be different from the DOM built by other parser (anonymous elements, mandatory TBODY, adjacents text nodes, etc.) – user357812 Dec 22 '10 at 12:40
show 1 more comment

1 Answer

up vote 1 down vote accepted

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.

share|improve this answer
Sry, Question was not framed pretty well. I was aware that structure of page changes. 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. – Jitendra Dec 22 '10 at 15:27
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. – Jitendra Dec 22 '10 at 15:30
@Jitendra, I updated my answer in response to those comments. – LarsH Dec 23 '10 at 17:24
thnx Larsh, I would definitely try JTidy java version of Html Tidy. – Jitendra Dec 26 '10 at 9:43

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.