This commit is contained in:
spiduler
2020-11-07 18:35:07 +09:00
parent 9981411815
commit 5531783551

View File

@@ -95,13 +95,15 @@ class CaptchaComp {
}
resolveCaptcha(driver) {
return this.api.working ? new Promise(r => r(new Error('Resovling Catpcha'))) : this.requestResolve(driver)
.then(id => this.getAnswer(id))
.then(res => {
setTimeout(() => { this.api.working = false }, 1000 * 5 * 2)
logger.info({ result: res.request }, 'Calling captchaCallback')
return driver.executeScript('captchaCallback("' + res.request + '")').then(() => this.sleep(1000 * 5))
})
if (this.api.working === false) {
return this.api.working ? new Promise(r => r(new Error('Resovling Catpcha'))) : this.requestResolve(driver)
.then(id => this.getAnswer(id))
.then(res => {
setTimeout(() => { this.api.working = false }, 1000 * 5 * 2)
logger.info({ result: res.request }, 'Calling captchaCallback')
return driver.executeScript('captchaCallback("' + res.request + '")').then(() => this.sleep(1000 * 5))
})
}
}
}