Element click selector for ajax popup in Element click selector for pagination not working?

Hello, i'm trying to scrape this website :

Url: https://trajectoire.sante-ra.fr/Trajectoire/pages/AccesLibre/Annuaires/EtablissementMSPH.aspx

The scraping seems working like a charm but when its finish i got only first page results in the best cases ... :frowning:

I tried everything for hours but the results is always the same whatever pagination scraping strategy founds in tutorials, the city, the area ...

Either i got only the 1st page results with all data (can't post the real sitemap , too long for posting) either nothing like in the last test sitemap

For example

Code postal - Ville : 59800 - LILLE
Distance : 3 km

Results : 2 pages

Data : 1st page

Test sitemap :

{"_id":"viatest","startUrl":["https://trajectoire.sante-ra.fr/Trajectoire/pages/AccesLibre/Annuaires/EtablissementMSPH.aspx"],"selectors":[{"id":"organisme-pop","type":"SelectorElementClick","parentSelectors":["pagination"],"selector":"#BlocResultats","multiple":false,"delay":"2000","clickElementSelector":"div[onclick]","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"name","type":"SelectorText","parentSelectors":["organisme-pop"],"selector":"h2","multiple":false,"regex":"","delay":0},{"id":"pagination","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"#itemContainer","multiple":false,"delay":"2000","clickElementSelector":"#PageSuivante:not([disabled])","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueHTML"}]}

Try the one below. It works for me on 10+ pages, e.g. Lyon 03, 10 km. You will need to use a longer Page load delay to give yourself enough time to click on the search fields.

{"_id":"forum-trajectoire-test","startUrl":["https://trajectoire.sante-ra.fr/Trajectoire/pages/AccesLibre/Annuaires/EtablissementMSPH.aspx"],"selectors":[{"id":"Click Next","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div#itemContainer","multiple":false,"delay":"1600","clickElementSelector":"input#PageSuivante","clickType":"clickMore","discardInitialElements":"discard","clickElementUniquenessType":"uniqueText"},{"id":"Result wrappers","type":"SelectorElement","parentSelectors":["Click Next"],"selector":"div.VignetteStructureInner","multiple":true,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["Result wrappers"],"selector":"div > div[class^='Ligne']:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"Location","type":"SelectorText","parentSelectors":["Result wrappers"],"selector":"div > div[class^='Ligne']:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"Phone","type":"SelectorText","parentSelectors":["Result wrappers"],"selector":".Texte div div:nth-of-type(3)","multiple":false,"regex":"","delay":0}]}

Thank you very much for help but with this sitemap i get only the results elements data not for each element's pop up data :frowning:
i use selectorElementClick in order to click and to get the data on the pop up, i tried everything but still not working ...