Html scraping made easy.

Tag content

While we used Scraper (prior to the first public release), sometimes we had some problems determining the structure of the template using only tags. So, we started to take into account the content of tags on the template. For example:
<h1>Content ${content}</h1>
Will match:
<h1>Content something</h1>
And will capture "something" But won't match:
<h1>something</h1>
This is quite useful on tableful pages that it's hard to determine a unique structure.