Dropdown keeps looping on the first 2 elements

Hello,
I have a problem with a dropdown: for reasons I can't figure out, webscraper keeps looping only through the first 2 options rather than iterating through all of them. I'm sure I'm missing something very obvious, could you please point me in the right direction? I'm extremely new to this.

Thank you in advance

Sitemap:
{"_id":"RP","startUrl":["https://www.robertparker.com/vintage-chart"],"selectors":[{"clickElementSelector":"div.sc-ieecCq","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"do-not-discard","id":"country","multiple":true,"parentSelectors":["_root"],"selector":"div.mnmd-main-col","type":"SelectorElementClick"},{"id":"row","multiple":true,"parentSelectors":["internal-region"],"selector":"div.row:nth-of-type(n+3)","type":"SelectorElement"},{"id":"vintage","multiple":false,"parentSelectors":["row"],"regex":"","selector":"div.sc-iqseJM:nth-of-type(1)","type":"SelectorText"},{"id":"region","multiple":false,"parentSelectors":["row"],"regex":"","selector":".sc-iqseJM div","type":"SelectorText"},{"id":"description","multiple":false,"parentSelectors":["row"],"regex":"","selector":"div.kyclXd","type":"SelectorText"},{"id":"rating","multiple":false,"parentSelectors":["row"],"regex":"","selector":"span","type":"SelectorText"},{"id":"country-name","multiple":false,"parentSelectors":["country"],"regex":"","selector":"h3","type":"SelectorText"},{"clickElementSelector":"select#region-selection option","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":5000,"discardInitialElements":"do-not-discard","id":"internal-region","multiple":true,"parentSelectors":["country"],"selector":"div.sc-pVTFL","type":"SelectorElementClick"},{"id":"internal-region-name","multiple":false,"parentSelectors":["country"],"regex":"","selector":"select#region-selection option[selected]","type":"SelectorText"}]}

I finally managed to solve the issue!
Should anyone be in a similar situation: I changed the hierarchy after realizing that the Element click worked properly if it was on the root element but it wasn't working in a sub-element due to the fact that I was passing down only the dropdown rather than the entire page content.

I have a similar problem. I am scraping a dynamic Table but I don't get the selected scraped data out of the table.