Hello,
I'm facing this problem : on a company page on linkedin, I am trying to get the name and the job of all the people who liked every post of that company.
On each article, the list of people who liked is a popup with no URL change. I already saw that one way to do this is to use elementclick. When I do this, I set the Click Selector as the "like button" (to open the popup) and the Selector as all the articles. But when I try, after this step, to get the list of people after each click on the popup, I can't select anything from the popup, only from the article before the popup was clicked (and this doesn't interest me).
Another solution was to have a multiple popup link selector and after each click, getting list of names and jobs but it didn't work too.
I put both of my approaches on the sitemap.
Url example : https://www.linkedin.com/company/safran/posts/?feedView=all
Sitemap:
{"_id":"test_linkedin","startUrl":["https://www.linkedin.com/company/mecatherm/posts/?feedView=all"],"selectors":[{"id":"pop-up-news-likes","type":"SelectorElementClick","parentSelectors":["_root"],"selector":".feed-shared-update-v2 > div","multiple":true,"delay":2000,"clickElementSelector":"li.social-details-social-counts__reactions","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueHTMLText"},{"id":"pop-up-click","type":"SelectorPopupLink","parentSelectors":["_root"],"selector":"span.social-details-social-counts__reactions-count","multiple":true,"delay":0},{"id":"people-name","type":"SelectorText","parentSelectors":["pop-up-click"],"selector":".artdeco-entity-lockup--size-4 .artdeco-entity-lockup__title span","multiple":true,"regex":"","delay":0},{"id":"people-job","type":"SelectorText","parentSelectors":["pop-up-click"],"selector":".artdeco-entity-lockup--size-4 div.artdeco-entity-lockup__caption","multiple":true,"regex":"","delay":0}]}
Thank you in advance.