Cycling Through Pagination and Ignoring Pages to Scrape

I'm attempting to scrape a website and gather data on employment lawyers. I have managed to get it to actually cycle through each pagination but it doesn't go into the entries and scrape the data I need. Please help.

Url: https://www.elaweb.org.uk/membership?fullname=&company=&town=&postcode=&regionid=All&page=2

Sitemap:
{"_id":"elawebscrape","startUrl":["https://www.elaweb.org.uk/membership?fullname=&company=&town=&postcode=&regionid=All&page=2"],"selectors":[{"id":"lawyer list","type":"SelectorLink","selector":"h3 a","parentSelectors":["_root","pagination","pagination2"],"multiple":true,"delay":0},{"id":"name","type":"SelectorText","selector":"div.ela-summary div.clearfix div:nth-of-type(2)","parentSelectors":["lawyer list"],"multiple":false,"regex":"","delay":0},{"id":"pagination","type":"SelectorLink","selector":"div.view div.clearfix:nth-of-type(1) li.pager-next a","parentSelectors":["_root","pagination2"],"multiple":true,"delay":"10"},{"id":"company","type":"SelectorText","selector":"div.ela-summary div.clearfix:nth-of-type(3) div:nth-of-type(2)","parentSelectors":["lawyer list"],"multiple":false,"regex":"","delay":0},{"id":"email","type":"SelectorText","selector":"div.ela-summary a","parentSelectors":["lawyer list"],"multiple":false,"regex":"","delay":0},{"id":"pagination2","type":"SelectorLink","selector":"div.view div.clearfix:nth-of-type(1) li.pager-next a","parentSelectors":["pagination"],"multiple":true,"delay":0}]}

It seems that you just didn't wait for the scraper to complete. The scraper is configured in a way that it will go through all pagination pages and only then it will go into lawyer pages.

If you remove the pagination selectors and run the sitemap on the start url you will see that the scraper is going into lawyer pages.

Also you don't need two pagination selectors. You should just use one and make it a parent to itself.