I'm trying to scrape a page that uses javascript for pagination. I've used element click to traverse between pages. Then I've used link action to go into each separate pa ge and get some extra info.
It all works good The element click goes trough all pages. But at the end of scraping process only the last page (9th) is scraped for the information.
Am I doing it wrong or is it impossible to scrape?
Does any have any ideas on how to go about it?
Thanks!
Url: https://www.bizi.si/iskanje?q=spletna%20trgovina
Sitemap:
{"_id":"bizi","startUrl":["https://www.bizi.si/iskanje?q=%20trgovina%20živali"],"selectors":[{"id":"pagination","type":"SelectorElementClick","parentSelectors":["_root"],"selector":".bg-full","multiple":true,"delay":"5000","clickElementSelector":"#divTopInfoRow li.clean.right a.pibtn","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"item","type":"SelectorLink","parentSelectors":["pagination"],"selector":"td.main > a","multiple":true,"delay":0},{"id":"naslov","type":"SelectorText","parentSelectors":["item"],"selector":"h1","multiple":false,"regex":"","delay":0}]}

