Need help with this pls - values in different rows

Hello,

I have watched the tutorials and followed the instructions but I get results in different rows despite having set up an element. Can anyone please help me understand what I am doing wrong with the following project?

{"_id":"studyingermany","startUrl":["https://www.study-in-germany.de/en/plan-your-studies/study-options/programme/higher-education-compass/?hec-p=[1-1093]"],"selectors":[{"id":"CourseDuration","multiple":true,"parentSelectors":["UniversityCardWrapper"],"regex":"","selector":"li.u-flex:nth-of-type(2) p","type":"SelectorText"},{"id":"UniversityLogoURL","multiple":true,"parentSelectors":["UniversityCardWrapper"],"regex":"src=\"(.*?)\" alt=\"Logo","selector":"figure","type":"SelectorHTML"},{"id":"UniversityCardWrapper","multiple":true,"parentSelectors":["_root"],"selector":"article","type":"SelectorElement"},{"id":"UniversityName","multiple":false,"parentSelectors":["UniversityCardWrapper"],"regex":"font-body-small\" data-v-b407dd80=\"\">(.*?)</p>","selector":".cards__header div","type":"SelectorHTML"},{"id":"CourseName","multiple":false,"parentSelectors":["UniversityCardWrapper"],"regex":"data-v-b407dd80=\"\">(.*?)</h3>","selector":"a","type":"SelectorHTML"},{"id":"DegreeLevel","multiple":true,"parentSelectors":["UniversityCardWrapper"],"regex":"","selector":"li:nth-of-type(1) p","type":"SelectorText"},{"id":"Location","multiple":true,"parentSelectors":["UniversityCardWrapper"],"regex":"","selector":"li:nth-of-type(3) p","type":"SelectorText"}]}

Any suggestion is appreciated

Cheers!

@world33 Hello, it appears the issue arises due to a misuse of the 'Multiple' option.

Update all of the child selectors of 'UniversityCardWrapper' with the 'Multiple' option not checked or use the 'Grouped' selector instead.

you are right. Thank you for your quick help!!!
I also had to uncheck multiple from the parent Element wrapper to work.
Now may only issue is how to modify the regex for html elements to capture only what is inside the left and right html tags I select.
for example if I use this regex:
data-v-b407dd80="">(.*?)</h3>

it captures also data-v-b407dd80=""> and </h3> where I would like to capture only what is in between. Any suggestion how to modify the regex and exclude the boundary html strings?

Here the new sitemap fixed.

{"_id":"studyingermany","startUrl":["https://www.study-in-germany.de/en/plan-your-studies/study-options/programme/higher-education-compass/?hec-p=[1-1093]"],"selectors":[{"id":"CourseDuration","multiple":false,"parentSelectors":["UniversityCardWrapper"],"regex":"","selector":"li:nth-of-type(2) div","type":"SelectorText"},{"id":"UniversityLogoURL","multiple":false,"parentSelectors":["UniversityCardWrapper"],"regex":"src=\"(.*?)\" alt=\"Logo","selector":"figure","type":"SelectorHTML"},{"id":"UniversityCardWrapper","multiple":false,"parentSelectors":["_root"],"selector":"article","type":"SelectorElement"},{"id":"UniversityName","multiple":false,"parentSelectors":["UniversityCardWrapper"],"regex":"font-body-small\" data-v-b407dd80=\"\">(.*?)</p>","selector":".cards__header div","type":"SelectorHTML"},{"id":"CourseName","multiple":false,"parentSelectors":["UniversityCardWrapper"],"regex":"data-v-b407dd80=\"\">(.*?)</h3>","selector":"a","type":"SelectorHTML"},{"id":"DegreeLevel","multiple":false,"parentSelectors":["UniversityCardWrapper"],"regex":"","selector":"li:nth-of-type(1) p","type":"SelectorText"},{"id":"Location","multiple":false,"parentSelectors":["UniversityCardWrapper"],"regex":"","selector":"li:nth-of-type(3) p","type":"SelectorText"}]}

Hi there, Yes same here. I get a different image url like you. Very strange...
Thank you very much!