No data scraped yet for 10times

During testing everything is working fine but no data scrapped

Url: https://10times.com/company/

Sitemap:
{"_id":"tentimescompanytest","startUrl":["https://10times.com/company/Afghanistan","https://10times.com/company/India"],"selectors":[{"id":"loadmore","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"td.box-link","multiple":true,"delay":"2000","clickElementSelector":"#loadMoreData button","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"name","type":"SelectorLink","parentSelectors":["loadmore"],"selector":"strong a","multiple":true,"delay":0},{"id":"website","type":"SelectorLink","parentSelectors":["name"],"selector":"a.btn-lg[target]","multiple":false,"delay":0},{"id":"location","type":"SelectorText","parentSelectors":["name"],"selector":"section:nth-of-type(5) strong, .block a","multiple":false,"regex":"","delay":0},{"id":"concatc_click","type":"SelectorPopupLink","parentSelectors":["name"],"selector":"a.x-ob-cd","multiple":false,"delay":0},{"id":"contact","type":"SelectorText","parentSelectors":["name"],"selector":"div.modal-body","multiple":false,"regex":"","delay":0},{"id":"country","type":"SelectorText","parentSelectors":["name"],"selector":".col-md-12 > a","multiple":false,"regex":"","delay":0}]}

You might be hitting the WS/Chrome RAM limits if there is a lot of data. On my computer, it fails at around 1,500 -2,000 rows. You can try limiting the scrapers with :nth type selectors. In the example below, the scraper will only get the first 125 companies. You can change the number in the selector. table tr:nth-of-type(n+2):nth-of-type(-n+125) td.box-link

{"_id":"forum-tentimescompanytest","startUrl":["https://10times.com/company/Afghanistan","https://10times.com/company/India"],"selectors":[{"id":"loadmore","type":"SelectorElementClick","parentSelectors":["_root"],"selector":".table tr:nth-of-type(n+2):nth-of-type(-n+125) td.box-link","multiple":true,"delay":"2000","clickElementSelector":"#loadMoreData button","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"name","type":"SelectorLink","parentSelectors":["loadmore"],"selector":"strong a","multiple":false,"delay":0},{"id":"website","type":"SelectorLink","parentSelectors":["name"],"selector":"a.btn-lg[target]","multiple":false,"delay":0},{"id":"location","type":"SelectorText","parentSelectors":["name"],"selector":"section:nth-of-type(5) strong, .block a","multiple":false,"regex":"","delay":0},{"id":"concatc_click","type":"SelectorPopupLink","parentSelectors":["name"],"selector":"a.x-ob-cd","multiple":false,"delay":0},{"id":"contact","type":"SelectorText","parentSelectors":["name"],"selector":"div.modal-body","multiple":false,"regex":"","delay":0},{"id":"country","type":"SelectorText","parentSelectors":["name"],"selector":".col-md-12 > a","multiple":false,"regex":"","delay":0}]}