Multiple expand button in 1 page

Hi, I'm trying to scrape this page https://kfc.com.my/find-a-kfc; the name, address & the coordinate of the branches. However i only manage to scrape 1 branch since i don't know how to select multiple stores since it has multiple expand button and the previous store detail will collapsed after the next expand button is clicked.

sitemap:
{"_id":"kfc_malaysia","startUrl":["https://kfc.com.my/find-a-kfc"],"selectors":[{"id":"store details","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"li.store.expand","multiple":false,"delay":0,"clickElementSelector":"li#store-4115.store button.button-expand","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"},{"id":"branch","type":"SelectorText","parentSelectors":["store details"],"selector":"h6","multiple":false,"regex":"","delay":0},{"id":"address","type":"SelectorText","parentSelectors":["store details"],"selector":"p.address","multiple":false,"regex":"","delay":0},{"id":"coordinate","type":"SelectorLink","parentSelectors":["store details"],"selector":"a:nth-of-type(1)","multiple":false,"delay":0}]}

Please advise. i really appreciate it. Thank you!

I tried this.... kinda works but the result is erratic with some data are not scrapped & skipped. Your help is appreciated

Sitemaps:
{"_id":"kfcmalaysia","startUrl":["https://kfc.com.my/find-a-kfc"],"selectors":[{"id":"List","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"li.store","multiple":true,"delay":0,"clickElementSelector":"button.button-expand","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"},{"id":"Name","type":"SelectorText","parentSelectors":["List"],"selector":"h6","multiple":true,"regex":"","delay":0},{"id":"add","type":"SelectorText","parentSelectors":["List"],"selector":"p.address","multiple":true,"regex":"","delay":0},{"id":"coor","type":"SelectorLink","parentSelectors":["List"],"selector":"a:nth-of-type(1)","multiple":true,"delay":0}]}