Created
August 20, 2017 03:56
-
-
Save taitems/7c56e6e1b51906f9158281bda3839545 to your computer and use it in GitHub Desktop.
(Extract) Check the status of a vehicle registration and scrape results.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Open form and submit enquire for `rego` | |
function getInfo(rego) { | |
horseman | |
.userAgent('Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0') | |
.open(url) | |
.type('#registration-number-ctrl input[type=text]', rego) | |
.click('.btn-holder input') | |
.waitForSelector('.ctrl-holder.ctrl-readonly') | |
.html() | |
.then(function(body) { | |
console.log(processInfo(body, rego)); | |
return horseman.close(); | |
}); | |
} | |
// Scrape the results for key info | |
function processInfo(html, rego) { | |
var $ = cheerio.load(html); | |
var vehicle = $('label.label').filter(function() { | |
return $(this).text().trim() === 'Vehicle:'; | |
}).next().text().trim(); | |
var stolen = $('label.label').filter(function() { | |
return $(this).text().trim() === 'Stolen status:'; | |
}).next().text().trim(); | |
var registration = $('label.label').filter(function() { | |
return $(this).text().trim() === 'Registration status & expiry date:'; | |
}).next().text().trim(); | |
return { | |
rego, | |
vehicle, | |
stolen, | |
registration | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks