Right data preview, but empty data

Hi,
I have this map. If I debug it visually I'm able to see the sample data of the third column.
If I run "Scrape", at the end the output is empty.

What am I doing wrong?

Thank you

{"_id":"tmdn","startUrl":["https://www.tmdn.org/giview/gi/search"],"selectors":[{"id":"all","linkType":"linkFromRedirect","multiple":false,"parentSelectors":["_root"],"selector":"select option[value=\"25\"]","type":"SelectorLink"},{"id":"sample_column","multiple":true,"parentSelectors":["all"],"regex":"","selector":"p.country","type":"SelectorText"}]}

Hi,

The link selector type will not work for the results per page selection, please use element click instead:

{"_id":"tmdn","startUrl":["https://www.tmdn.org/giview/gi/search"],"selectors":[{"id":"sample_column","multiple":true,"parentSelectors":["results-per-page"],"regex":"","selector":"p.country","type":"SelectorText"},{"clickActionType":"real","clickElementSelector":"option[value=\"25\"]","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":0,"discardInitialElements":"discard-when-click-element-exists","id":"results-per-page","multiple":false,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"}]}