Web scraper is working till the end item, but browse only few items, f

Describe the problem.
I can see the website shows all the 582 items till the end, but I only see 26 items in the browse data also saved csv data. Anything is missing?
Thank you for help!

Url: http://https://www.ema.europa.eu/en/medicines/field_ema_web_categories%253Aname_field/Human/ema_group_types/ema_medicine?search_api_views_fulltext=CArcinoma

Sitemap:
{"_id":"ema1","startUrl":["https://www.ema.europa.eu/en/medicines/field_ema_web_categories%3Aname_field/Human/ema_group_types/ema_medicine?search_api_views_fulltext=carcinoma+summari"],"selectors":[{"id":"name","type":"SelectorText","parentSelectors":["_root"],"selector":"div.ema-u-color-grey-2:nth-of-type(2) small","multiple":true,"regex":"","delay":0},{"id":"load","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.ema-u-color-grey-2:nth-of-type(2) small","multiple":true,"delay":0,"clickElementSelector":"li.first a","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueHTML"}]}

Your "Click More" Selector does two things, clicks the load-more button and defines each data grouping (element select)

Thus you need the text selector inside (as a child to) the element-click (click more selector)

Try this

{"_id":"ema1","startUrl":["https://www.ema.europa.eu/en/medicines/field_ema_web_categories%3Aname_field/Human/ema_group_types/ema_medicine?search_api_views_fulltext=carcinoma+summari"],"selectors":[{"id":"load","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.ecl-list-item__body","multiple":true,"delay":0,"clickElementSelector":"li.first a","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"},{"id":"Details","type":"SelectorText","parentSelectors":["load"],"selector":"div.ema-u-color-grey-2:nth-of-type(2) small","multiple":false,"regex":"","delay":0}]}

Thank you so much Support Team! it works! Bret!
I suggest adding more tutorials! for people like me complete newbie.

I wonder if it is possible to split the my row content "Sorafenib, Carcinoma, Hepatocellular Carcinoma, Renal Cell" into 2 seperate "Sorafenib", then "Carcinoma, Hepatocellular Carcinoma, Renal Cell"

Hi - No worries. I actually don't work for web scraper, just help out the public forum a bit. I am sure they will read your comment though.

In terms of separating out the columns, you can but not easily. I would do it post-scrape in excel using a formula