You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
566 B
JavaScript

const genericBootstrapFactory = require("./generics/generic-bootstrap");
const genericVinParserFactory = require("./generics/generic-vin-parser");
module.exports = {
execute: genericBootstrapFactory({
baseUrl: 'hemmings.com',
pageLoadIndicator: '#galleries',
vinSelector: '.leading-loose > li:nth-child(2) > span:nth-child(2)',
carouselTrigger: '.bg-center'
}),
baseUrl :'hemmings.com',
parseVIN: async function(page) {
return null;
},
parseMileage: async function (page) {
return null;
}
}