i am trying to scrape amazon books using Cheerio
and request
in nodeJS
But i can't figure how to get Print length
and publication date
from HTML
code below
<table id="productDetailsTable" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td class="bucket">
<h2>Product Details</h2>
<div class="content">
<ul>
<li>
<b>File Size:</b>
2544 KB
</li>
<li>
<b>Print Length:</b>
658 pages
</li>
<li>
<b>Publisher:</b>
Anchor; 1st edition (September 15, 2009)
</li>
</ul>
</div>
</td>
</tr>
</tbody>
</table>
Any kind of help will be appreciated.Thanks.