-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscrape.js
More file actions
222 lines (193 loc) · 6.6 KB
/
scrape.js
File metadata and controls
222 lines (193 loc) · 6.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
const express = require('express')
const app = express()
const port = 3000
const puppeteer = require ('puppeteer');
const json2html = require('json2html')
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`)
})
app.get('/', (req, res) => {
res.send("<button><a href='http://localhost:3000/kaiser'>Scrape 60 Doctors</a></button>")
})
//initiating Puppeteer
const puppet = () => puppeteer
.launch ()
.then (async browser => {
//opening a new page and navigating to Kaiser
const page = await browser.newPage ();
await page.goto ('https://healthy.kaiserpermanente.org/northern-california/doctors-locations#/search-result?region=NCA&searchType=doctors&city_label=Redwood%20City');
//wait for required elements to populate before begining scrape
await page.waitForSelector ('.detail-data', {
visible: true,
});
await page.waitForSelector ('.kpPagination__list', {
visible: true,
});
//manipulating the page's content
let getdoctorinfo = await page.evaluate (() => {
//wait for '.detail-data' to load before scraping
let allInfo = document.body.querySelectorAll ('.detail-data');
let scrapeItems = [];
allInfo.forEach (item => {
let name = item.querySelector ('h2').innerText;
let specialty = '';
let office = '';
let address = '';
let phone = '';
try {
specialty = item.querySelector ('.specialtyMargin').innerText;
} catch (err) {}
try {
office = item.querySelector ('.doctorOffice').innerText;
} catch (err) {}
try {
address = item.querySelector ('.doctorAddress').innerText;
} catch (err) {}
try {
phone = item.querySelector ('.doctorPhone').innerText;
} catch (err) {}
//combine doctorOffice with doctorAddress
let fullAddress;
if (office) {
fullAddress = office.concat('\n' + address);
}
else {
fullAddress = address;
}
scrapeItems.push ({
'physicianName': name,
'physicianSpecialty': specialty,
'practicingAddress': fullAddress,
'phone': phone,
});
})
return scrapeItems;
}).then( async res => {
let alldocinfo = res;
linkHandlers = await page.$x("//span[contains(text(), 'Next')]");
//click navigation 'next' button
if (linkHandlers.length > 0) {
await linkHandlers[0].click();
} else {
throw new Error("Link not found");
}
await page.waitForSelector ('.detail-data', {
visible: true,
});
await page.waitForSelector ('.kpPagination__list', {
visible: true,
});
await page.evaluate (() => {
//wait for '.detail-data' to load before scraping
let allInfo = document.body.querySelectorAll ('.detail-data');
//storing the scraped items in an array then selecting for retrieving content
let scrapeItems = [];
allInfo.forEach (item => {
let name = item.querySelector ('h2').innerText;
let specialty = '';
let office = '';
let address = '';
let phone = '';
try {
specialty = item.querySelector ('.specialtyMargin').innerText;
} catch (err) {}
try {
office = item.querySelector ('.doctorOffice').innerText;
} catch (err) {}
try {
address = item.querySelector ('.doctorAddress').innerText;
} catch (err) {}
try {
phone = item.querySelector ('.doctorPhone').innerText;
} catch (err) {}
//combine doctorOffice with doctorAddress
let fullAddress;
if (office) {
fullAddress = office.concat('\n' + address);
}
else {
fullAddress = address;
}
scrapeItems.push ({
'physicianName': name,
'physicianSpecialty': specialty,
'practicingAddress': fullAddress,
'phone': phone,
});
})
return scrapeItems;
}).then( async res => {
alldocinfo = alldocinfo.concat(res);
})
linkHandlers = await page.$x("//span[contains(text(), 'Next')]");
//click navigation 'next' button
if (linkHandlers.length > 0) {
await linkHandlers[0].click();
} else {
throw new Error("Link not found");
}
await page.waitForSelector ('.detail-data', {
visible: true,
});
await page.waitForSelector ('.kpPagination__list', {
visible: true,
});
await page.evaluate (() => {
//wait for '.detail-data' to load before scraping
let allInfo = document.body.querySelectorAll ('.detail-data');
//storing the scraped items in an array then selecting for retrieving content
let scrapeItems = [];
allInfo.forEach (item => {
let name = item.querySelector ('h2').innerText;
let specialty = '';
let office = '';
let address = '';
let phone = '';
try {
specialty = item.querySelector ('.specialtyMargin').innerText;
} catch (err) {}
try {
office = item.querySelector ('.doctorOffice').innerText;
} catch (err) {}
try {
address = item.querySelector ('.doctorAddress').innerText;
} catch (err) {}
try {
phone = item.querySelector ('.doctorPhone').innerText;
} catch (err) {}
//combine doctorOffice with doctorAddress
let fullAddress;
if (office) {
fullAddress = office.concat('\n' + address);
}
else{
fullAddress = address;
}
scrapeItems.push ({
'physicianName': name,
'physicianSpecialty': specialty,
'practicingAddress': fullAddress,
'phone': phone,
});
})
return scrapeItems;
}).then( async res => {
alldocinfo = alldocinfo.concat(res);
return alldocinfo;
})
return alldocinfo;
})
//closing the browser
await browser.close ();
return getdoctorinfo
})
//handling any errors
.catch (function (err) {
console.error (err);
});
//send data with json2html format, if raw json is desired you can remove json2html and just send 'data' directly.
app.get('/kaiser', (req, res) => {
puppet().then( data => {
res.send(json2html.render(data));
})
})