I have to click more button to show entire text

Describe the problem.

I would scrap the review of below site.
there are some long review messages, but web page shows short part, and when I must click +more button they show entire message

I can't solve this problem

Url: https://www.airbnb.co.kr/s/South-Korea/experiences/cooking-classes
sub web url : https://www.airbnb.co.kr/experiences/1041418?location=South%20Korea&source=p2

Sitemap:
{"_id":"korea-cooking","startUrl":["https://www.airbnb.co.kr/s/South-Korea/experiences/cooking-classes"],"selectors":[{"id":"pagination","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"a._qgeedx","multiple":false,"delay":0},{"id":"class","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"a._6lth7f","multiple":true,"delay":0},{"id":"next","type":"SelectorElementClick","parentSelectors":["class"],"selector":"div[itemprop='review']","multiple":true,"delay":"500","clickElementSelector":"div._1bdke5s","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"name","type":"SelectorText","parentSelectors":["next"],"selector":"[itemprop='author'] span","multiple":false,"regex":"","delay":0},{"id":"date","type":"SelectorText","parentSelectors":["next"],"selector":"span._1jlnvra2","multiple":false,"regex":"","delay":0},{"id":"star","type":"SelectorHTML","parentSelectors":["next"],"selector":"div[itemprop='reviewRating']","multiple":false,"regex":"","delay":0},{"id":"huki","type":"SelectorText","parentSelectors":["next"],"selector":"div._h6avcp2","multiple":false,"regex":"","delay":0}]}

Airbnb is quite a complex website which will require some tricks and knowledge of CSS. For the sub page Url, the sitemap below will work to click all the +More buttons and scrape the reviews. I used Page Load Delay: 6000, plus you would need to wait a few more seconds as it clicks on every +More button.

{"_id":"forum-airbnb-korea","startUrl":["https://www.airbnb.co.kr/experiences/1041418?location=South%20Korea&source=p2"],"selectors":[{"id":"Title","type":"SelectorText","parentSelectors":["_root"],"selector":"div[itemprop='name'] > h1[tabindex]","multiple":false,"regex":"","delay":0},{"id":"Click More","type":"SelectorElementClick","parentSelectors":["Review wrappers"],"selector":"_parent_","multiple":true,"delay":"2100","clickElementSelector":"div[dir='ltr'] > button:contains('+ More')","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"Name","type":"SelectorText","parentSelectors":["Click More"],"selector":"span[itemprop='author']","multiple":false,"regex":"","delay":0},{"id":"Date","type":"SelectorElementAttribute","parentSelectors":["Click More"],"selector":"span > meta[itemprop='datePublished']","multiple":false,"extractAttribute":"content","delay":0},{"id":"Review wrappers","type":"SelectorElement","parentSelectors":["_root"],"selector":"div > div[itemprop='review']","multiple":true,"delay":0},{"id":"Rating","type":"SelectorElementAttribute","parentSelectors":["Click More"],"selector":"span[role='img'] ","multiple":false,"extractAttribute":"aria-label","delay":0},{"id":"Review","type":"SelectorElementAttribute","parentSelectors":["Click More"],"selector":"div > meta[itemprop='reviewBody']","multiple":false,"extractAttribute":"content","delay":0}]}

Thanks a lot!!
I learned by viewing your source
I have solved that by HTML selector
the source contain full review, so I select all HTML source, and I recombined by excel.
anyway I got the result.

Thanks again for your help