Issue with pagination

Hi. I have been trying to get pagination to work on the following site but am having issues. The data preview option works and behaves as expected but when I select scrape nothing happens :confused:

Appreciate if anyone can help. Many thanks.

Url: http://www.daft.ie/dublin-city/houses-for-sale/

Sitemap:
{"_id":"daftsalesdublin","startUrl":["http://www.daft.ie/dublin-city/houses-for-sale/"],"selectors":[{"id":"maincard","type":"SelectorElement","selector":"div.box:nth-of-type(n+2)","parentSelectors":["_root","pagination"],"multiple":true,"delay":0},{"id":"description","type":"SelectorText","selector":"h2 a","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0},{"id":"price","type":"SelectorText","selector":"strong.price","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0},{"id":"type","type":"SelectorText","selector":"ul.info li:nth-of-type(1)","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0},{"id":"#beds","type":"SelectorText","selector":"ul.info li:nth-of-type(2)","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0},{"id":"#baths","type":"SelectorText","selector":"ul.info li:nth-of-type(3)","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0},{"id":"ber","type":"SelectorImage","selector":"span.ber-hover img","parentSelectors":["maincard"],"multiple":false,"delay":0},{"id":"pricechangedown","type":"SelectorText","selector":"span.price-change-down","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0},{"id":"pricechangeup","type":"SelectorText","selector":"span.price-change-up","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0},{"id":"pagination","type":"SelectorElementClick","selector":"ul.paging","parentSelectors":["_root","pagination"],"multiple":true,"delay":0,"clickElementSelector":"li.next_page a","clickType":"clickOnce","discardInitialElements":true,"clickElementUniquenessType":"uniqueHTML"}]}

Here is the fix (one way)

I used Link Selector for the "next arrow" making it a child of Root & It's self. (No need to click Multiple)
I then put in the element selector selector to .box

(Some reason it works from the bottom up and if you don't want to lose the first page of data, pagnation needs to be on top of element select.

Seems to work well

{"_id":"daftsalesdublin","startUrl":["http://www.daft.ie/dublin-city/houses-for-sale/"],"selectors":[{"id":"Pag","type":"SelectorLink","selector":"li.next_page a","parentSelectors":["_root","Pag"],"multiple":false,"delay":0},{"id":"maincard","type":"SelectorElement","selector":".box","parentSelectors":["_root","Pag"],"multiple":true,"delay":0},{"id":"Name","type":"SelectorText","selector":"h2 a","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0},{"id":"Description","type":"SelectorText","selector":"ul.info li:nth-of-type(1)","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0},{"id":"beds","type":"SelectorText","selector":"ul.info li:nth-of-type(2)","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0},{"id":"Baths","type":"SelectorText","selector":"ul.info li:nth-of-type(3)","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0},{"id":"Price","type":"SelectorText","selector":"strong.price","parentSelectors":["maincard"],"multiple":false,"regex":"","delay":0}]}