How to scrape clickable object

Hello team,

I want scrape certain content which is inside the listings of the website

https://www.kartevonmorgen.org/m/main?c=50.8260%2C10.9200&z=6.00

but I cannot do it. I want to scrape from each the listing

  • the title
  • the address
  • phone
  • website

How I can do this?

Thank you and best wishes

If you are able to insert all the detail pages directly into the sitemap, then you cna use this code to grab these data:

{"_id":"kartevonmorgen","startUrl":["https://www.kartevonmorgen.org/m/main?c=50.8260%2C10.9200&z=6.00"],"selectors":[{"id":"title","parentSelectors":["_root"],"type":"SelectorText","selector":"h2","multiple":false,"regex":""},{"id":"address","parentSelectors":["_root"],"type":"SelectorText","selector":"#entity-detail > div:nth-of-type(4)","multiple":false,"regex":""},{"id":"phone","parentSelectors":["_root"],"type":"SelectorText","selector":"address div:nth-of-type(2)","multiple":false,"regex":""},{"id":"website","parentSelectors":["_root"],"type":"SelectorText","selector":"div:nth-of-type(4) a.ant-typography","multiple":false,"regex":""}]}

Buon giorno Matteo!

Unfortunately it did not work (or I did something wrong).

I did the following steps:

  1. I opened the URL from the code in the browser, means this one: "https://www.kartevonmorgen.org/m/main?c=50.8260%2C10.9200&z=6.00"
  2. I clicked on Import Site Map
  3. I entered your code into "Sitemap JSON" and clicked "Import sitemap"
  4. I started scraping

Then it tells me that no data has been scrapped. I tried this is Chrome and Firefox and it both browsers I had the same problem. Did I something wrong?

Thank you in advance and best wishes!
Fiori