Cannot click on Load more and cannot scrape

Hi, I'm not an expert data miner, so I need some help. I'd like to get the name of the brand and the phone number. But when you access the site, it only shows a few brands and you have to click on Load More to view all the brands. So, I'm trying Element Click and found a solution with the Load More (initially, after my 2nd retry I couldn't get it to work again). I initially got stuck with the Load More, but couldn't click on the brand pages to scrape the info I need. I'd appreciate any help I can get.

Url: https://www.pacificplace.com.hk/en/Directory

Sitemap:
{"_id":"paceplace","startUrl":["https://www.pacificplace.com.hk/en/Directory"],"selectors":[{"id":"load-more","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"button:contains("Load more").","multiple":false,"delay":"3000","clickElementSelector":"a.js-load-more","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"brand-name","type":"SelectorText","parentSelectors":["load-more"],"selector":"div.standardHeader__brand > h1","multiple":true,"regex":"","delay":0},{"id":"brand-number","type":"SelectorText","parentSelectors":["load-more"],"selector":"a.icon-phone.desktop","multiple":false,"regex":"","delay":0}]}

Hi I couldn't load your code so I generated from scratch. I think your Load More was failing because you did not specify a delay. So your scrape was moving ahead too quickly before website loaded the rest. I added a page scroll at start and I'm using these settings for scraping:
Browser zoom size: 75% (this causes website to display more items at a time)
Request interval (ms): 3500
Page load delay (ms): 4000

{"_id":"pacplace_test","startUrl":["https://www.pacificplace.com.hk/en/Directory"],"selectors":[{"id":"scroll","type":"SelectorElementScroll","parentSelectors":["_root"],"selector":".tout__button span","multiple":false,"delay":"2000"},{"id":"click_load_more","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"a.js-load-more","multiple":false,"delay":"4000","clickElementSelector":"a.js-load-more","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"click_brands","type":"SelectorLink","parentSelectors":["_root"],"selector":"div.directoryListing__items--item:nth-of-type(n+4) a.directoryListing__items--item--image","multiple":true,"delay":0},{"id":"telephone","type":"SelectorText","parentSelectors":["click_brands"],"selector":"div.shopDetails__details--hours","multiple":false,"regex":"\(\d{3}\) \d{4} \d{4}","delay":0},{"id":"get_brand","type":"SelectorText","parentSelectors":["click_brands"],"selector":"div.standardHeader__brand","multiple":false,"regex":"","delay":0},{"id":"website","type":"SelectorLink","parentSelectors":["click_brands"],"selector":".shopDetails__details--info a.secondary","multiple":false,"delay":0}]}