I'm working on a project for school and Im having trouble parsing a webpage. I call it "dynamic" because the content changes every time we change a search parameter.
This is the link https://en.mygon.com/#!guia/todas-as-categorias/portugal/amanha/qualquer-hora
When you click it, it will show some search results. However I can't find them in the page source code, but I do identify that the search is related to a script (i think).
<input id="search-words-button" type="button" class="action submit" onClick="searchWordsElement();" value="GO"/>
How can i use jsoup to parse the results from this page?
Thank you