Closed voidbydefault closed 3 months ago
Hi @madingess,
I noted an issue with the output logs where job_title in the CSVs is repeating twice. For example:
Output:
Verrus "Regional Sales Manager Regional Sales Manager" https://www.linkedin.com/jobs/view/3955306721/ United Arab Emirates (Remote) 58:30.8
Expected output:
Company | Job title | URL | Location | Job applied time stamp
This is because job_title becomes "Regional Sales Manager\nRegional Sales Manager". Only declaration I am able to trace is:
job_title
job_title = job_tile.find_element(By.CLASS_NAME, 'job-card-list__title').text
Unfortunately, I am ~able~ unable to trace root cause, and not sure if something changed at LinkedIn's end. Can you please spare sometime to have a look? This is affecting CSV outputs/failed and PowerBI
Thanks.
It's not a bug, one stupid change by LinkedIn to add verified badge using same element with job title appearing twice.
Hi @madingess,
I noted an issue with the output logs where job_title in the CSVs is repeating twice. For example:
Output:
Expected output:
This is because
job_title
becomes "Regional Sales Manager\nRegional Sales Manager". Only declaration I am able to trace is:job_title = job_tile.find_element(By.CLASS_NAME, 'job-card-list__title').text
Unfortunately, I am ~able~ unable to trace root cause, and not sure if something changed at LinkedIn's end. Can you please spare sometime to have a look? This is affecting CSV outputs/failed and PowerBI
Thanks.