From ad0f9bc1c30abaa541d2be7129ea1d0a96ebbc91 Mon Sep 17 00:00:00 2001 From: AMAICDAX Date: Wed, 10 Sep 2025 12:01:51 +0200 Subject: [PATCH] modif --- controllers/linkedin.js | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/controllers/linkedin.js b/controllers/linkedin.js index e56cbd7..06df645 100644 --- a/controllers/linkedin.js +++ b/controllers/linkedin.js @@ -156,17 +156,18 @@ const scrapeLinkedInProfile = async (profileUrl) => { ); return { - name: getText("h1"), - headline: getText("div .text-body-medium .break-words"), - location: getText( - "span .text-body-small .inline .t-black--light .break-words" - ), - about: getText("div .display-flex .ph5 .pv3"), - experiences: getAllText( - "div .KbuWagYZEALUPOYGtkFczhgTiHHNRLZKhdLlK ul li" - ), - education: getAllText("section#education-section li"), - skills: getAllText(".pv-skill-category-entity__name-text"), + profileData, + // name: getText("h1"), + // headline: getText(""), + // location: getText( + // "" + // ), + // about: getText(""), + // experiences: getAllText( + // "" + // ), + // education: getAllText(""), + // skills: getAllText(""), }; });