abono-transportes-web-scraping
v1.0.11
Published
#### sample to use ```javascript (async() =>{ let p = new PuppetterPack('001 0123456789'); await p.init().catch((res) => { console.log('Init Fail: ', res); process.exit(1); });
Downloads
3
Readme
abono_transportes_web_scraping
sample to use
(async() =>{
let p = new PuppetterPack('001 0123456789');
await p.init().catch((res) => {
console.log('Init Fail: ', res);
process.exit(1);
});
let result = await p.getResults().catch((res) => console.log('Result Fail: ' , res));
await p.close();
})()