I´m trying to create a small application using Python and requests library that can retrieve results from a Spanish website that contains several advertisements. The website application does not directly allows the user to enter coordinates to look for results but it has a "map interface" that can help.
If you look at this URL you can see that a map appears with some results. If I want to review them, I have to click on the button that says "Listado". Once there, it is easy to get the information.
The problem is that the HTML code behind the "map interface" page, does not contain the URL to the results list page. It is generated by a complex javascript. Is there any way to get this URL without using any physical simulator like Selenium nor replicating the javascript?
Thank you in advance.