I'm using puppeteer with puppeteer-extra-plugin-recaptcha plugin. I want to set a custom timeout for 2captcha solving but I'm having a hard time. The method I use is:
await page.solveRecaptchas()
But I couldn't find anything timeout-related in the plugin documentation, I tried multilpe guess-kind of solutions page.setDefaultTimeout(x)
, page.solveRecaptchas({timeout: x})
but none works.
Any help is much appreciated