node:internal/process/promises:246
triggerUncaughtException(err, true /* fromPromise */);
i get the following error if i try to scrape a profile
async function scrapeProfile() {
const profileScraper = await scrapedin({ email: 'mymail@mymail.com', password: '******' })
const profile = await profileScraper('https://www.linkedin.com/in/some-profile/')
console.log(profile)
}
scrapeProfile()
i get the following error if i try to scrape a profile