Extract information after click on an element and then jump to the next one

Hi community,

I have already searched trough the forum but did not see any information about it (or maybe I did not notice it). I want to be able to extract information (e.g. phone number/ e-mail adress) after I opened a result. Is it possible to create a scrapper which clicks on an Element, open the new site, extract the data from the new site, and keeps on opening the next element.

Thank you for any help!

Url: Alle Ergebnisse für Digitale agentur in Deutschland | Bewertungen | Telefon | Preise vergleichen

@realer Hello, most of the time 'Element click' selector works only in cases if the page is not reloaded, otherwise, you should focus on using the 'Link' selector instead.

You should be able to extract the phone numbers using the following sitemap example:

{"_id":"sitemap-11880-com","startUrl":["https://www.11880.com/suche/digitale%20agentur/deutschland?page=[1-5]"],"selectors":[{"delay":0,"id":"wrapper","multiple":true,"parentSelectors":["_root"],"selector":"ol.result-list > li:has(h2.result-list-entry-title__headline--ellipsis)","type":"SelectorElement"},{"delay":0,"id":"Title","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"h2","type":"SelectorText"},{"delay":0,"id":"Phone","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"span.result-list-entry-phone-number__label","type":"SelectorText"}]}