Load More & Extracting News Links Only

I successfully clicked load more but it went infinite time, in the end didn't saved any thing. I need to click load more 10times only and just save the news link from it.
Can someone help me in this

Url: https://www.business.com/content/news/

Sitemap:
{"_id":"business-news-final-2","startUrl":["https://www.business.com/content/news/"],"selectors":[{"id":"loader","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"h4.abril","multiple":true,"delay":"2000","clickElementSelector":"button.bcs-white","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueCSSSelector"},{"id":"link-save","type":"SelectorLink","parentSelectors":["loader"],"selector":"div.bb:nth-of-type(n+2) a","multiple":true,"delay":0}]}

Try this:

{"_id":"a_business-news","startUrl":["https://www.business.com/content/news/"],"selectors":[{"id":"loader","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.pv2 , div.bb:has(article):nth-of-type(-n+100)","multiple":true,"delay":"2000","clickElementSelector":"button.bcs-white","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueCSSSelector"},{"id":"link-save","type":"SelectorElementAttribute","parentSelectors":["loader"],"selector":"a","multiple":true,"extractAttribute":"href","delay":0}]}

I had to back out your loader selector to use a tag a little higher up on DOM tree and then I added ':nth-of-type(-n+100)' to put a limit on how much it will scrape. Change the 100 to how many links you would like it to grab. I also added div.pv2 so it would grab the very first article which is styled differently than the rest of them.

And on your link-save selector you were using the SelectorLink selector which is what you would use if you wanted to follow the link and goto the page to scrape some other data. I'm assuming the link itself is what you are wanting to scrape so use the Element Attribute selector with 'href' as the attribute to scrape the URLs.