noCaptchaAi / nocaptchaai-puppeteer

Puppeteer package for NoCaptchaAI (hCaptcha solver) ⚡️

Home Page:https://noCaptchaAI.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

target innerframe correctly

leanderhamzoui opened this issue · comments

otherwise its not working for me on my site, also this way is more correct:

//const inner = await page.waitForSelector('iframe:not([data-hcaptcha-response])');
const inner = await page.$("iframe[title='Main content of the hCaptcha challenge']",);

What's the site?

otherwise its not working for me on my site, also this way is more correct:

//const inner = await page.waitForSelector('iframe:not([data-hcaptcha-response])');
const inner = await page.$("iframe[title='Main content of the hCaptcha challenge']",);

fixed. thanks for report.