var Conjugator = Class({}, "Conjugator")({
prototype : {
_baseUrl: "http://www.spanishdict.com/conjugate/",
- _selector: ".aa .neoConj tr td",
+ _selector: ".vtable-word",
init : function init(config) {
config = config || {};
return reject(err);
}
$ = cheerio.load(body);
- result = $('.vtable-word')[10];
+ result = $(this._selector)[10];
if (!result) {
console.log("Verb not found: ", verb);