lukluk / wayang

Remote Chrome Headless , bypass reCAPTCHA dan anything that needs to be done by human

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wayang

a Plugin for puppeteer, that help you do human thing in headless browser such as by pass reCaptcha,

Iam not robot button , captcha with visual puzzle and many more

logo Wayang

Example

const puppeteer = require('puppeteer');
const dalang = require('wayang');

(async () => {
  const browser = await puppeteer.launch();
  const page = await browser.newPage();
  page.setViewport({
    width: 1920,
    height:1080,
  })
  await page.goto('http://vip.bitcoin.co.id');
  let kimantep = new dalang({
    page:page
  })

  kimantep.listenToDalang(function(action){


        //TODO: Scraper lines code are happy here after manual process  

  })
})();

More

wayang

About

Remote Chrome Headless , bypass reCAPTCHA dan anything that needs to be done by human


Languages

Language:JavaScript 69.9%Language:HTML 30.1%