I want to parse some web-pages on Google Play (for example this) to get current version of the game, total downloads, etc. I'm not a newbie in Java, but a little bit newbie in parsing. I heard something about JSOUP library and tried to deal with it, but faced the problem.
Seems like Google Play doesn't provide proper HTML doc (page source code kinda clear). I think initially the page is loading and only after then using JS, the data is loading onto the page. div/span classes have same names, and i got something like this:
<span class="htlgb">December 16, 2019</span>
<span class="htlgb">20M</span>
<span class="htlgb">100,000+</span>
<span class="htlgb">1.5.7</span>
<span class="htlgb">4.0 and up</span>
How to juke this? Any tips? Can i solve it with JSOUP or not?