Fields Within Same Parent Element Do Not Appear on Same Line in CSV

Hi All,

I am trying to extract the phone number and address for each record, but the phone and address aren't showing up on the same line. Am I doing something wrong here?
Thanks!
-Andrew

Url: https://www.naec-epilepsy.org/about-epilepsy-centers/find-an-epilepsy-center/all-epilepsy-center-locations/

Sitemap:
{"_id":"naec","startUrl":["https://www.naec-epilepsy.org/about-epilepsy-centers/find-an-epilepsy-center/all-epilepsy-center-locations/"],"selectors":[{"id":"Fac_Parent","type":"SelectorElement","selector":"div.all-locations__item","parentSelectors":["_root"],"multiple":true,"delay":0},{"id":"Phone","type":"SelectorText","selector":"li.info__subitem.info__subitem--phone","parentSelectors":["Fac_Parent"],"multiple":true,"regex":"","delay":0},{"id":"Facility Name","type":"SelectorText","selector":"li.info__subitem.info__subitem--hospital_name","parentSelectors":["Fac_Parent"],"multiple":true,"regex":"","delay":0},{"id":"Address","type":"SelectorText","selector":"li.info__subitem.info__subitem--aadress:nth-of-type(3)","parentSelectors":["Fac_Parent"],"multiple":true,"regex":"","delay":0}]}

Uncheck multiple on the phone, address, and name, and you probably want "li.info__subitem.info__subitem--aadress" as the selector for the address.

Like this:

{"_id":"forum","startUrl":["https://www.naec-epilepsy.org/about-epilepsy-centers/find-an-epilepsy-center/all-epilepsy-center-locations/"],"selectors":[{"id":"Fac_Parent","type":"SelectorElement","selector":"div.all-locations__item","parentSelectors":["_root"],"multiple":true,"delay":0},{"id":"Phone","type":"SelectorText","selector":"li.info__subitem.info__subitem--phone","parentSelectors":["Fac_Parent"],"multiple":false,"regex":"","delay":0},{"id":"Facility Name","type":"SelectorText","selector":"li.info__subitem.info__subitem--hospital_name","parentSelectors":["Fac_Parent"],"multiple":false,"regex":"","delay":0},{"id":"Address","type":"SelectorText","selector":"li.info__subitem.info__subitem--aadress","parentSelectors":["Fac_Parent"],"multiple":false,"regex":"","delay":0}]}

Yep, that did the trick. Thanks so much!