Scraper halts when it finds and add

Hi,

I am trying to scrap this website:

https://www.milanuncios.com/venta-de-edificios/?desde=50000&fromSearch=1&hitOrigin=listing&orden=date&s=edificio%20alicante

as you can see the 6th item is an add, and I think the scraper gets an error and stops scraping.... everything thing is correct till this add
Is there a way to tell the scraper to keep on scraping whenever it gets an error?

{"_id":"milanuncios","startUrl":["https://www.milanuncios.com/venta-de-edificios/?desde=50000&fromSearch=1&hitOrigin=listing&orden=date&s=edificio%20alicante"],"selectors":[{"id":"wrapped","parentSelectors":["_root"],"type":"SelectorElement","selector":"div.ma-AdCardV2-detail","multiple":true},{"id":"name","parentSelectors":["wrapped"],"type":"SelectorText","selector":"a.ma-AdCardListingV2-TitleLink","multiple":false,"regex":""},{"id":"price","parentSelectors":["wrapped"],"type":"SelectorText","selector":"p.ma-AdMultiplePrice-priceBlock","multiple":false,"regex":""}]}

thanks in advance

@chemota Hello, it seems that when accessing the page by default only 5 ads are shown. More ads are loaded only after scrolling down the page.

To scrape all of the available ads, please, be sure to use an 'Element scroll' selector instead of an 'Element' selector.