我正在尝试绕过没有提交按钮的 hcaptcha。
所以我需要知道回调名称函数但我在页面的源代码中找不到它。
知道如何在收到我的令牌 thx 后将我的请求提交给验证码解析器吗?
看起来recaptcha是可能的:https ://gist.github.com/2captcha/2ee70fa1130e756e1693a5d4be4d8c70
但无法为 hcaptcha 找到相同的解决方案。
感谢您的帮助。
我正在尝试绕过没有提交按钮的 hcaptcha。
所以我需要知道回调名称函数但我在页面的源代码中找不到它。
知道如何在收到我的令牌 thx 后将我的请求提交给验证码解析器吗?
看起来recaptcha是可能的:https ://gist.github.com/2captcha/2ee70fa1130e756e1693a5d4be4d8c70
但无法为 hcaptcha 找到相同的解决方案。
感谢您的帮助。
这实际上看起来很简单:
$('form').submit()
这是我为验证 hcaptcha 所做的。但不幸的是,即使我向他发送验证令牌,验证码也会再次要求我填写
await page.$eval('textarea', (e, token) => {
e.value = token
}, token)
await page.waitForTimeout(1000 + randomTime()*3)
await page.evaluate(() => document.querySelector('form').submit())