const Yamaha = require('./yamaha-scrape');
const cheerio = require('cheerio')
const QueryProcessor = require('scrape-query-processor');
const debug = require('debug')
const yamaha = new Yamaha(cheerio, QueryProcessor);
yamaha.scrapeAll().then(data => {
debug(data)
})