Hi, I've already used the platform for simple data scraping, but I can't make this trick work.
I'd like to gather data from every organisation that appears on the list provided by the EuropeanUnion website
Ex : 13000+ organisations are registered on this list, and I would like the scrapper to extract data from every company accessible by a link on the "Search the register" part.
By clicking on every link, I should land on company pages which look like this.
I want to capture the organisation name
But also the person in charge for EU relations and his/her position
And finally the people having access to European Parliament
Here's what I tried :
{"_id":"transparencyOrganisations","startUrl":["Search the register - European Union span"},{"id":"organisationLink","parentSelectors":["pagination"],"type":"SelectorLink","selector":".ecl-content-block__title a","multiple":true,"linkType":"linkFromHref"},{"id":"orgaName","parentSelectors":["organisationLink"],"type":"SelectorText","selector":"td:nth-of-type(2) strong","multiple":false,"regex":""},{"id":"personInChargeName","parentSelectors":["organisationLink"],"type":"SelectorText","selector":"tr:contains('Person in charge of EU relations:') td:nth-of-type(2)","multiple":false,"regex":""},{"id":"personInChargePosition","parentSelectors":["organisationLink"],"type":"SelectorText","selector":"table:nth-of-type(5) tr:contains('Position:') td:nth-of-type(2)","multiple":false,"regex":""},{"id":"EPaccessName","parentSelectors":["wrapper_for_EPaccessName_EPaccess1stName"],"type":"SelectorText","selector":"td:nth-of-type(1)","multiple":false,"regex":""},{"id":"EPaccess1stName","parentSelectors":["wrapper_for_EPaccessName_EPaccess1stName"],"type":"SelectorText","selector":"td:nth-of-type(2)","multiple":false,"regex":""},{"id":"wrapper_for_EPaccessName_EPaccess1stName","parentSelectors":["organisationLink"],"type":"SelectorElement","selector":".ecl-table__cell .ecl-table__body tr","multiple":true}]}
Unfortunately it doesn't seem to work, only going through the list without capturing anything.
Does someone have the same issue ? Could someone kindly help me ?
Thank you !