Clicking next multiple times and scraping each page

I'm working on scraping a website, but struggling with doing a manoeuver.

I want the scraper to scrape a page, click 'next page', scrape that page, click 'next page' and so on and so forth until it's all done. For some reason I can't get webscraper.io to do this.

For context it's for this website: https://www.eu-startups.com/directory/wpbdp_category/british-startups/

I have created a selector that goes into each of the businesses and scrapes those pages individually. I've created a selector that clicks "Next page" but it only clicks once and doesn't repeat again.

Sitemap:
{"_id":"EuStartups_Founders","startUrl":["https://www.eu-startups.com/directory/wpbdp_category/british-startups/"],
"selectors":[{"id":"Business link","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root","Business link"],"selector":"h3 a","type":"SelectorLink"},{"id":"Company name","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".entry-title span","type":"SelectorText"},{"id":"Location","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".value a","type":"SelectorText"},{"id":"Tags","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-tags div","type":"SelectorText"},{"id":"Total funding","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-total_funding div","type":"SelectorText"},{"id":"Founded","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-founded div","type":"SelectorText"},{"id":"Website","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-website div","type":"SelectorText"},{"id":"company status","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-company_status div","type":"SelectorText"},{"id":"Comments","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-business_description div","type":"SelectorText"},{"id":"Next","linkType":"linkFromHref","multiple":false,"parentSelectors":["_root"],"selector":".next a","type":"SelectorLink"}]}

Pagination.

Hi, the type of the pagination selector should be 'Pagination', see the example below:

{"_id":"EuStartups_Founders","startUrl":["https://www.eu-startups.com/directory/wpbdp_category/british-startups/"],"selectors":[{"id":"Business link","linkType":"linkFromHref","multiple":true,"parentSelectors":["Next"],"selector":"h3 a","type":"SelectorLink"},{"id":"Company name","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".entry-title span","type":"SelectorText"},{"id":"Location","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".value a","type":"SelectorText"},{"id":"Tags","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-tags div","type":"SelectorText"},{"id":"Total funding","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-total_funding div","type":"SelectorText"},{"id":"Founded","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-founded div","type":"SelectorText"},{"id":"Website","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-website div","type":"SelectorText"},{"id":"company status","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-company_status div","type":"SelectorText"},{"id":"Comments","multiple":false,"parentSelectors":["Business link"],"regex":"","selector":".wpbdp-field-business_description div","type":"SelectorText"},{"id":"Next","paginationType":"auto","parentSelectors":["_root","Next"],"selector":".next a","type":"SelectorPagination"}]}