From 1b90d5001addf53dbc1258cf897ccbcecd37d709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CRohit?= Date: Fri, 14 Oct 2022 19:23:46 +0530 Subject: [PATCH] Issue fixed --- scrape_linkedin/Profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrape_linkedin/Profile.py b/scrape_linkedin/Profile.py index a132af5..05a4474 100644 --- a/scrape_linkedin/Profile.py +++ b/scrape_linkedin/Profile.py @@ -171,7 +171,7 @@ def accomplishments(self): ]) try: container = one_or_default( - self.soup, '.pv-accomplishments-section') + self.soup, '.pv-profile-section') for key in accomplishments: accs = all_or_default( container, 'section.' + key + ' ul > li')