-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAllmatch.js
29 lines (29 loc) · 820 Bytes
/
Allmatch.js
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
const request = require("request");
const cheerio = require("cheerio");
const scoreCardObj = require("./scorecard");
function getAllMatchesLink(url) {
request(url, function (err, response, html) {
if (err) {
console.log(err);
}
else {
extractAllLinks(html);
}
})
}
function extractAllLinks(html) {
let $ = cheerio.load(html);
// cheerio -> access index wrap
let scorecardElems = $("a[data-hover='Scorecard']");
for (let i = 0; i < scorecardElems.length; i++) {
let link = $(scorecardElems[i]).attr("href");
let fullLink = "https://www.espncricinfo.com" + link;
// console.log(fullLink);
scoreCardObj.ps(fullLink);
//
}
}
// inbuilt feature
module.exports = {
gAlmatches: getAllMatchesLink
}