Skip to content

Commit d410d01

Browse files
Linkedin sales navigator (#71)
* feat: add sales navigator search results * feat: add sales leads search results scrapper
1 parent 243ced8 commit d410d01

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
url: https://www.linkedin.com/sales/lists/people/*
2+
header: Linkedin Sales Navigator Leads List
3+
listElementsQuery: 'tr.artdeco-models-table-row'
4+
elementParser:
5+
- title: Avatar
6+
query: img
7+
type: image
8+
- title: Name
9+
query: '[data-anonymize="person-name"]'
10+
type: text
11+
- title: Job
12+
query: '[data-anonymize="job-title"]'
13+
type: text
14+
- title: Company
15+
query: '[data-anonymize="company-name"]'
16+
type: text
17+
- title: Location
18+
query: '[data-anonymize="location"]'
19+
type: text
20+
- title: Profile url
21+
query: '[data-anonymize="person-name"]'
22+
type: clean-url
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
url: https://www.linkedin.com/sales/search/*
2+
header: Linkedin Sales Navigator search results
3+
listElementsQuery: '.artdeco-list__item'
4+
elementParser:
5+
- title: Avatar
6+
query: img
7+
type: image
8+
- title: Name
9+
query: '.artdeco-entity-lockup__title > a'
10+
type: text
11+
- title: Job
12+
query: '.artdeco-entity-lockup__subtitle > span:nth-child(1)'
13+
type: text
14+
- title: Company
15+
query: '.artdeco-entity-lockup__subtitle > a'
16+
type: text
17+
- title: Location
18+
query: '.artdeco-entity-lockup__caption'
19+
type: text
20+
- title: Profile url
21+
query: '.artdeco-entity-lockup__title > a'
22+
type: clean-url

0 commit comments

Comments
 (0)