Looking to extract data from a Google Maps applet.
The specific page can be found here: You can click on items on the map to view displayed information.
While typical Google Maps show marker elements, I cannot see them on the provided link when inspecting with developer tools. However, when clicking a marker, I can see the dialog box in the dev inspector.
Despite trying to use the developer tools, no markers are visible. Clicking a marker reveals new elements in the tool, but I would like to automate these clicks using Selenium.
I suspect this involves Javascript or similar technology. How can I retrieve the element xpaths?
If it does involve Javascript, is there documentation available on how to interact with it using Selenium and how to identify the source Javascript used on the scraping page?
Appreciate your help in advance.