Android Question web-component inside a web page with MiniHtmlParser

Alessandro71

Well-Known Member
Licensed User
Longtime User
I'm downloading a web page and parsing it with MiniHtmlParser.
Looking at the page with a web browser, I see a section with content that is not contained in the html file.
Inspecting it I see that this section is enclosed in a
HTML:
<section class="web-component" ...></section>
tags
I can see the content with a web browser, but not with MiniHtmlParser
How can I get the same content I see in a web browser with an HttpJob Download?
 

DonManfred

Expert
Licensed User
Longtime User
probably the site is loading additional data with javascript and dynamically adding content.

You don´t get the full content when downloading the initial webpage which uses Javascript...
 
Upvote 1

Alessandro71

Well-Known Member
Licensed User
Longtime User
maybe an hidden webview may help, by getting the whole content after it has been handled by the webview itself...
 
Upvote 0
Top