I don't understand How to select name then other info for this website. I need name and others info of this person in one row
Hi,
It is not quite clear what you mean. Which person exactly?
Also, the sitemap code is broken, please post it as Preformatted text
(</> button)
{"_id":"Plos_Multiple_Article_Scrape","startUrl":["https://journals.plos.org/plosbiology/issue?id=10.1371/issue.pbio.v22.i01"],"selectors":[{"id":"Article","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":".item--article-title a","type":"SelectorLink"},{"id":"Element","multiple":true,"parentSelectors":["Article"],"selector":".author-info ","type":"SelectorElement"},{"id":"Name","multiple":true,"parentSelectors":["Article"],"regex":"","selector":"a.author-name","type":"SelectorText"},{"id":"Affiliation","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"p[id^="authAffiliations"]","type":"SelectorText"},{"id":"ORCID","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"#connect-orcid-link","type":"SelectorText"},{"id":"Email","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"p[id^="authCorresponding"]","type":"SelectorText"}]}
The name has to be a child of the Element selector to be displayed in the same row.
I have adjusted the value of the Element selector so all data selectors are in its scope:
{"_id":"Plos_Multiple_Article_Scrape","startUrl":["https://journals.plos.org/plosbiology/issue?id=10.1371/issue.pbio.v22.i01"],"selectors":[{"id":"Article","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":".item--article-title a","type":"SelectorLink"},{"id":"Element","multiple":true,"parentSelectors":["Article"],"selector":"li[data-js-tooltip=\"tooltip_trigger\"]","type":"SelectorElement"},{"id":"Name","multiple":true,"parentSelectors":["Element"],"regex":"","selector":"a.author-name","type":"SelectorText"},{"id":"Affiliation","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"p[id^='authAffiliations']","type":"SelectorText"},{"id":"ORCID","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"#connect-orcid-link","type":"SelectorText"},{"id":"Email","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"p[id^='authCorresponding']","type":"SelectorText"}]}
Thank you. I am trying it for two days but not successful. But you done it easily.