Method
services.company.careers.findPage(params);
LinkedIn company URL (improves accuracy)
Output
Example
const careers = await services.company.careers.findPage({
domain: ctx.thisRow.get("Website"),
companyLinkedinUrl: ctx.thisRow.get("Company LinkedIn"),
});
return careers.url;
Find careers page and scrape jobs
// First find the careers page
const careers = await services.company.careers.findPage({
domain: ctx.thisRow.get("Website"),
companyLinkedinUrl: ctx.thisRow.get("Company LinkedIn"),
});
// Then scrape the job listings
const jobs = await services.company.careers.scrapeJobs({
url: careers.url,
maxJobs: 50,
});
return jobs.length;