Hello,
I am scraping job ads for a school project. I manage to structure the sitemap, so i get title, date and job description. But the job description is just a link to the "actual" description which is a new link. How do I get the actual job description in text? I can't select the text when i am at the job description, it wont "find " it. (Im new to scraping).
Sitemap:
"_id":"webcrawler","startUrl":["https://www.jobindex.dk/jobsoegning/kontor/oekonomi?archive=1&maxdate=20230108&mindate=20000101"],"selectors":[{"id":"pagination","paginationType":"auto","parentSelectors":["_root","pagination"],"selector":"a.page-link","type":"SelectorPagination"},{"id":"element","multiple":true,"parentSelectors":["pagination"],"selector":"div.jix_robotjob","type":"SelectorElement"},{"id":"title","multiple":false,"parentSelectors":["element"],"regex":"","selector":"a strong","type":"SelectorText"},{"id":"date","multiple":false,"parentSelectors":["element"],"regex":"","selector":"div.jix-toolbar__pubdate","type":"SelectorText"},{"id":"job description","multiple":false,"parentSelectors":["element"],"selector":".btn-list__element a","type":"SelectorLink"}]}