Scrape New Window

Hello!

I want to scrape this url and the following pages: https://www.bodas.net/busc.php?id_grupo=1&id_sector=1&id_provincia=3035&showmode=list&NumPage=[1-7]

As you can see it is a wedding advertising platform.

When you click on the restaurant button, it opens a new window with all the data, that's the information I need to scrape!

I linked it with an item click selector, but it didn't work, maybe there's something wrong with the sitemap settings:

{"_id":"bodasnet","startUrl":["https://www.bodas.net/busc.php?id_grupo=1&id_sector=1&id_provincia=3035&showmode=list&NumPage=1"],"selectors":[{"id":"popup-link","parentSelectors":["_root"],"type":"SelectorElementClick","clickElementSelector":"#vendorTile130885 a","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","multiple":false,"selector":"#vendorTile130885 a"},{"id":"titulo","parentSelectors":["popup-link"],"type":"SelectorText","selector":"h1","multiple":false,"delay":0,"regex":""},{"id":"mas","parentSelectors":["popup-link"],"type":"SelectorElementClick","clickElementSelector":"button.storefrontFaqs__button","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","multiple":false,"selector":"button.storefrontFaqs__button"},{"id":"h3 info","parentSelectors":["popup-link"],"type":"SelectorText","selector":"div.storefrontFaqs__item","multiple":true,"delay":0,"regex":""},{"id":"precios-invitados","parentSelectors":["popup-link"],"type":"SelectorText","selector":"div.quickInfo--heading","multiple":false,"delay":0,"regex":""},{"id":"direccion","parentSelectors":["popup-link"],"type":"SelectorText","selector":"p.storefrontMap__address","multiple":false,"delay":0,"regex":""},{"id":"localizacion","parentSelectors":["popup-link"],"type":"SelectorText","selector":"span.storefrontHeading__locationName","multiple":false,"delay":0,"regex":""},{"id":"migas","parentSelectors":["popup-link"],"type":"SelectorText","selector":"ul.breadcrumb__list","multiple":false,"delay":0,"regex":""}]}

@abc1432 Hi, the property page acts as a pop-up, but it has a unique link, therefore you can use the 'Link' selector instead.

Example:

{"_id":"bodasnet","startUrl":["https://www.bodas.net/busc.php?id_grupo=1&id_sector=1&id_provincia=3035&showmode=list&NumPage=1"],"selectors":[{"delay":0,"id":"popup-link","multiple":true,"parentSelectors":["_root"],"selector":"a.vendorTile__title","type":"SelectorLink"},{"delay":0,"id":"titulo","multiple":false,"parentSelectors":["popup-link"],"regex":"","selector":"h1","type":"SelectorText"},{"clickElementSelector":"button.storefrontFaqs__button","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"mas","multiple":false,"parentSelectors":["popup-link"],"selector":"button.storefrontFaqs__button","type":"SelectorElementClick"},{"delay":0,"extractAttribute":"","id":"h3 info","parentSelectors":["popup-link"],"selector":"div.storefrontFaqs__item","type":"SelectorGroup"},{"delay":0,"id":"precios-invitados","multiple":false,"parentSelectors":["popup-link"],"regex":"","selector":"div.quickInfo--heading","type":"SelectorText"},{"delay":0,"id":"direccion","multiple":false,"parentSelectors":["popup-link"],"regex":"","selector":"p.storefrontMap__address","type":"SelectorText"},{"delay":0,"id":"localizacion","multiple":false,"parentSelectors":["popup-link"],"regex":"","selector":"span.storefrontHeading__locationName","type":"SelectorText"},{"delay":0,"id":"migas","multiple":false,"parentSelectors":["popup-link"],"regex":"","selector":"ul.breadcrumb__list","type":"SelectorText"}]}