Its been over a year since I've tried to scrape a site this way, so the process may have changed.
I have a web scrape that pulls everything fine - pagination is good, data is good, links to files are good. The only issue is the last step of the scrape - when I add a selector to 'click' the page button that downloads the file associated with the page it starts the first file download, pauses the scape on that page until download is complete, then stops the entire scrape process and returns no data. Removing the 'download' the full scrape completes as expected. When I have done this in the past it would start the download and then move on to the next page to scrape, etc. Is there a proper selector / parent combination I should be using now or is this no longer a function that works this way?
I've edited the website start page in the sitemap below to make it generic. 
Sitemap:
{"_id":"afgtest","startUrl":["https://website.com/data/"],"selectors":[{"delay":0,"id":"Title","multiple":false,"parentSelectors":["Click-Pagination"],"regex":"","selector":"a.title","type":"SelectorText"},{"delay":0,"id":"models","multiple":false,"parentSelectors":["Click-Pagination"],"regex":"","selector":"span.models","type":"SelectorText"},{"delay":0,"id":"detailslink","multiple":false,"parentSelectors":["Click-Pagination"],"selector":"a.title","type":"SelectorLink"},{"delay":0,"id":"ReleaseDate","multiple":false,"parentSelectors":["detailslink"],"regex":"","selector":"li.date","type":"SelectorText"},{"delay":0,"id":"Resolution","multiple":false,"parentSelectors":["detailslink"],"regex":"","selector":".genres li a:nth-of-type(1)","type":"SelectorText"},{"delay":0,"id":"FPS","multiple":false,"parentSelectors":["detailslink"],"regex":"","selector":".genres li a:nth-of-type(2)","type":"SelectorText"},{"delay":0,"id":"RunTime","multiple":false,"parentSelectors":["detailslink"],"regex":"","selector":"li.duration","type":"SelectorText"},{"clickElementSelector":"span.page","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":500,"discardInitialElements":"do-not-discard","id":"Click-Pagination","multiple":true,"parentSelectors":["_root"],"selector":"div.content_item","type":"SelectorElementClick"},{"delay":0,"id":"DownloadLink","multiple":false,"parentSelectors":["detailslink"],"selector":".ct_dl_columns_1 a","type":"SelectorLink"}]}