Link selector scrapping only a few data from a list

Hi! I'am having trouble to use link selector to scrape a list from an ads website.

Each page has 50 results, but I am only able to select the first 4 links using multiple selector, and not the whole page.

It used to work but it seems that the website was update and my query stopped working.

Can anyone help me?

Thanks

{"_id":"olxrecentes","startUrl":["Carros Usados e Novos à venda em MG a.sc-EHOje","type":"SelectorText"},{"id":"nome","multiple":false,"parentSelectors":["anuncios"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"ano","multiple":false,"parentSelectors":["anuncios"],"regex":"","selector":"div:nth-of-type(5) a.bKbCBo","type":"SelectorText"},{"id":"quilometragem","multiple":false,"parentSelectors":["anuncios"],"regex":"","selector":"div:nth-of-type(6) .dkrALZ span.bBPxWM","type":"SelectorText"},{"id":"preco","multiple":false,"parentSelectors":["anuncios"],"regex":"","selector":"h2:nth-of-type(2)","type":"SelectorText"},{"id":"fipe","multiple":false,"parentSelectors":["anuncios"],"regex":"","selector":"div.blpkQm:nth-of-type(2) span.cUyonN","type":"SelectorText"}]}

I can't load your sitemap (invalid), but I'm guessing your selectors are specific to one page only 'cos they seem to contain a lot of random characters, e.g.

a.bKbCBo
span.bBPxWM

These characters would probably change with every new page, so your scraper won't work. I recall doing some sitemaps for this site, and you can search the forum for "olx".

Hi! Thanks for your assistence, I tryed to research the forum, but I still can't figure out how to solve the problem.

I haven't seen that the forum has changed the exported code from the tool when I posted it previously...I can't simple copy and paste it without being automatically updated.

So...

[This is the link I am trying to scrap]
(Carros Usados e Novos à venda em MG)

And, this is the code... I just replaced the link above with "......." so I can show exactly what I am trying to do.

{"_id":"olxrecentes","startUrl":[.......],"selectors":[{"id":"anuncios","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":"a.sc-dlVxhl","type":"SelectorLink"},{"id":"modelo","multiple":false,"parentSelectors":["anuncios"],"regex":"","selector":"div.ad__sc-duvuxf-0:nth-of-type(2) a.sc-bZQynM","type":"SelectorText"},{"id":"nome","multiple":false,"parentSelectors":["anuncios"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"preco","multiple":false,"parentSelectors":["anuncios"],"regex":"","selector":"h2:nth-of-type(2)","type":"SelectorText"},{"id":"fipe","multiple":false,"parentSelectors":["anuncios"],"regex":"","selector":"div.blpkQm:nth-of-type(2) span.cUyonN","type":"SelectorText"}]}

Thank you!!