This commit is contained in:
AMAICDAX 2025-09-10 12:01:51 +02:00
parent 003132a838
commit ad0f9bc1c3

View file

@ -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(""),
};
});