How to get Name, Orcid and sup in one row?

I need to scrape data profile wise. Name, orcid and sup in one row for per profile.

Url: https://journals.aps.org/prxquantum/abstract/10.1103/PRXQuantum.4.010315

Sitemap:
{"_id":"APS_ONE_FULL_ISSUE_MULTIPLE_ARTICLE","startUrl":["https://journals.aps.org/prxquantum/issues/4/1"],"selectors":[{"id":"Articles","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":"a.default-link-no-flex","type":"SelectorLink"},{"id":"name","multiple":true,"parentSelectors":["Articles"],"regex":"","selector":".authors-wrapper a","type":"SelectorText"},{"extractAttribute":"href","id":"orcid","multiple":true,"parentSelectors":["Articles"],"selector":"a[aria-label]:nth-of-type(n+3)","type":"SelectorElementAttribute"},{"id":"sup","multiple":true,"parentSelectors":["Articles"],"regex":"","selector":"p sup","type":"SelectorText"}]}

Hi, it will not be possible to automatically organize the data, since all elements are on the same level in the HTML:

I would probably scrape the whole .authors-wrapper section as HTML and remove the tags in post processing.

1 Like

Okay got it. Thank you for your response.