Skip to main content

solve

🚨 EXPERIMENTAL 🚨 Solves a captcha or other challenge, specified by the "type" of captcha to solve

Example:

mutation SolveCaptcha {
goto(url: "https://protected.domain") {
status
}

solve(type: hcaptcha) {
found
solved
time
}
}
solve(
type: CaptchaTypes!
timeout: Float
wait: Boolean = true
): CaptchaResponse

Arguments

solve.type ● CaptchaTypes! non-null enum

An enum of the type of captcha to look for and solve

solve.timeout ● Float scalar

A time, in milliseconds, to wait for a captcha to appear. Only valid when wait = true. If a captcha is found then this timer doesn't have an effect on timing-out the solve

solve.wait ● Boolean scalar

Whether or not to wait for the Captcha to be present on the page

Type

CaptchaResponse object

Response returned after a captcha has been solved