What is selector to select all the author every time

Why all the authors are not selected I am trying with element selector But every time some authors are missing. What is selector to select all the author every time.

Url: https://www.life-science-alliance.org/content/7/11/e202402618

Sitemap:
{"_id":"160_Rockefeller_University_Press_Life_Science_Alliance_Journal","startUrl":["https://www.life-science-alliance.org/content/by/year/[2024-2025]"],"selectors":[{"id":"Issue","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":"a.hw-issue-meta-data","type":"SelectorLink"},{"id":"Article","linkType":"linkFromHref","multiple":true,"parentSelectors":["Issue"],"selector":"a.highwire-cite-linked-title","type":"SelectorLink"},{"id":"element","multiple":true,"parentSelectors":["Article"],"selector":"div:nth-of-type(n+12) div.qtip-content","type":"SelectorElement"},{"id":"saass","multiple":false,"parentSelectors":["element"],"regex":"","selector":"div.author-tooltip-name","type":"SelectorText"},{"id":"Email","multiple":false,"parentSelectors":["element"],"regex":"","selector":"[href^=\"mailto\"]","type":"SelectorText"}]}


On this page firstly selected element count 2 . Then is increased after time. like after 10 sec it shows 22 . What is the reason behind this?

Here is my updated Sitemap : {"_id":"160_Rockefeller_University_Press_Life_Science_Alliance_Journalc","startUrl":["https://www.life-science-alliance.org/content/by/year/[2024-2025]"],"selectors":[{"id":"Issue","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":"a.hw-issue-meta-data","type":"SelectorLink"},{"id":"Article","linkType":"linkFromHref","multiple":true,"parentSelectors":["Issue"],"selector":"a.highwire-cite-linked-title","type":"SelectorLink"},{"id":"Element","multiple":true,"parentSelectors":["Article"],"selector":"span.has-tooltip:has(.icon-envelope)","type":"SelectorElement"},{"id":"Name","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"_parent_","type":"SelectorText"},{"extractAttribute":"href","id":"Email","multiple":false,"parentSelectors":["Element"],"selector":"a.hw-author-corresp","type":"SelectorElementAttribute"},{"extractAttribute":"href","id":"Orcid","multiple":false,"parentSelectors":["Element"],"selector":"a.hw-author-orcid-logo","type":"SelectorElementAttribute"}]}

can you please check this @JanAp

No data extract and element selected showing after 10/20 sec

Hi, I adjusted the Element selector, please check the sitemap below:

{"_id":"160_Rockefeller_University_Press_Life_Science_Alliance_Journalc","startUrl":["https://www.life-science-alliance.org/content/by/year/[2024-2025]"],"selectors":[{"id":"Issue","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":"a.hw-issue-meta-data","type":"SelectorLink"},{"id":"Article","linkType":"linkFromHref","multiple":true,"parentSelectors":["Issue"],"selector":"a.highwire-cite-linked-title","type":"SelectorLink"},{"id":"Element","multiple":true,"parentSelectors":["Article"],"selector":".top-wrapper span.highwire-citation-author","type":"SelectorElement"},{"id":"Name","multiple":false,"parentSelectors":["Element"],"regex":"","selector":"_parent_","type":"SelectorText"},{"extractAttribute":"href","id":"Email","multiple":false,"parentSelectors":["Element"],"selector":"a.hw-author-corresp","type":"SelectorElementAttribute"},{"extractAttribute":"href","id":"Orcid","multiple":false,"parentSelectors":["Element"],"selector":"a.hw-author-orcid-logo","type":"SelectorElementAttribute"}]}

Is there any way make a element click or element selector ? In that way I can get the affiliation info too.

What is css selector to collect info from mouse hover from all the author

image

This should do the job:

{"_id":"160_Rockefeller_University_Press_Life_Science_Alliance_Journalc","startUrl":["https://www.life-science-alliance.org/content/by/year/[2024-2025]"],"selectors":[{"id":"Issue","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":"a.hw-issue-meta-data","type":"SelectorLink"},{"id":"Article","linkType":"linkFromHref","multiple":true,"parentSelectors":["Issue"],"selector":"a.highwire-cite-linked-title","type":"SelectorLink"},{"id":"Element","multiple":true,"parentSelectors":["Article"],"selector":"[id*=\"hw-article-author-popups\"] > [class*=\"author-tooltip\"]","type":"SelectorElement"},{"id":"Name","multiple":false,"parentSelectors":["Element"],"regex":"","selector":".author-tooltip-name","type":"SelectorText"},{"id":"Email","multiple":false,"parentSelectors":["Element"],"regex":"","selector":".author-corresp-email-link a","type":"SelectorText"},{"extractAttribute":"href","id":"Orcid","multiple":false,"parentSelectors":["Element"],"selector":".author-orcid-link a","type":"SelectorElementAttribute"},{"id":"affiliation","multiple":false,"parentSelectors":["Element"],"regex":"","selector":".author-affiliation","type":"SelectorText"},{"id":"roles","multiple":false,"parentSelectors":["Element"],"regex":"","selector":".author-tooltip-roles","type":"SelectorText"}]}
1 Like

Thank you so much! This looks perfect, and I'm really pleased with how you've handled it. I appreciate your help!