I want to parse some dynamically generated client side data of a website ( data is generated in JavaScript using several fetch()
commands ) in Android application using Java. Is there any way to access and parse these data. I want to get final HTML source after all client side JavaScript generation is finished. I suppose to parse them to jsoup HTML parser for the further processing.
Jsoup can't parse JavaScript so it can't be used here.
It can be done with Selenium webdriver or in case of Android use Selendroid.