Issue with scraping information available upon click

I've tried scraping this page (incl pagination). When running the scraper, it seems to make the right moves (i.e. going through pagination, clicking on tile to open more info) - but it doesn't seem to scrape the right info.

Url: Mitgliederverzeichnis - Swissmem

Here's my attempt :
{"_id":"swissmem","startUrl":["https://www.swissmem.ch/de/mehrwert-fuer-ihr-unternehmen/mitgliederverzeichnis.html"],"selectors":[{"id":"pag_selector","paginationType":"auto","parentSelectors":["_root","pag_selector"],"selector":"span.members-letter","type":"SelectorPagination"},{"clickElementSelector":"img","clickElementUniquenessType":"uniqueHTMLText","clickType":"clickMore","delay":2000,"discardInitialElements":"do-not-discard","id":"popup","multiple":false,"parentSelectors":["block"],"selector":"div.memberDetailsInner","type":"SelectorElementClick"},{"id":"name","multiple":true,"parentSelectors":["popup"],"regex":"","selector":"h3","type":"SelectorText"},{"id":"block","multiple":true,"parentSelectors":["pag_selector"],"selector":"div.c-members-search__results","type":"SelectorElement"},{"id":"try","multiple":false,"parentSelectors":["popup"],"regex":"","selector":"parent","type":"SelectorText"},{"id":"url","multiple":false,"parentSelectors":["popup"],"regex":"","selector":"a[target]","type":"SelectorText"}]}

@yannick Hello, it appears that with the current selector setup you are targeting every image within this website which causes multiple redirects.

Here's an adjusted version(targets companies that started with the letter 'x'):

{"_id":"swissmem","startUrl":["https://www.swissmem.ch/de/mehrwert-fuer-ihr-unternehmen/mitgliederverzeichnis.html"],"selectors":[{"id":"pag_selector","paginationType":"clickOnce","parentSelectors":["_root","pag_selector"],"selector":"span[data-letter='X']","type":"SelectorPagination"},{"clickElementSelector":".members-image img","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1200,"discardInitialElements":"discard-when-click-element-exists","id":"popup","multiple":true,"parentSelectors":["pag_selector"],"selector":"div.memberDetailsInner","type":"SelectorElementClick"},{"id":"name","multiple":false,"parentSelectors":["popup"],"regex":"","selector":"h3","type":"SelectorText"},{"id":"url","multiple":false,"parentSelectors":["popup"],"regex":"","selector":"a[target]","type":"SelectorText"}]}