[solved] Not able to use properly Element click

Hi,
I'm trying to scrape the data from here Eligendo Archivio - Ministero dell'Interno DAIT

My goal is to click only on this select, click on each 27 options and scrape some data from each of these 27 pages.
Below my json sitemap.

What am I doing wrong?

Thank you

{"_id":"eligendo","startUrl":["https://elezionistorico.interno.gov.it/index.php?tpel=C&dtel=25/09/2022&tpa=I&tpe=A&lev0=0&levsut0=0&es0=S&ms=S&ne1=0"],"selectors":[{"clickActionType":"real","clickElementSelector":"select[name=\"sel_sezione2\"] option[value*=\"lev\"]","clickElementUniquenessType":"uniqueHTML","clickType":"clickMore","delay":2000,"discardInitialElements":"do-not-discard","id":"circoscrizione","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"id":"enti","multiple":false,"parentSelectors":["circoscrizione"],"regex":"","selector":"#headEnti h3","type":"SelectorText"}]}

I have solved using Link and "Link from any script (window location=, window_open)", option.

This is a great tool

{"_id":"eligendo","startUrl":["https://elezionistorico.interno.gov.it/index.php?tpel=C&dtel=25/09/2022&tpa=I&tpe=A&lev0=0&levsut0=0&es0=S&ms=S&ne1=0"],"selectors":[{"id":"circ","linkType":"linkFromRedirect","multiple":true,"parentSelectors":["_root"],"selector":"#sel_sezione2 option[value*=\"lev\"]","type":"SelectorLink"},{"id":"righe_dati","multiple":true,"parentSelectors":["circ"],"selector":"table.dati.table-striped tr:not(.leader):has(td:has(img))","type":"SelectorElement"},{"id":"partito","multiple":false,"parentSelectors":["righe_dati"],"regex":"","selector":"th","type":"SelectorText"},{"id":"voti","multiple":false,"parentSelectors":["righe_dati"],"regex":"","selector":"td:nth-child(6)","type":"SelectorText"}]}