Solving Picture Captcha With Selenium and 2Captcha (JAVA)

点点圈 提交于 2020-04-17 20:51:52

问题


I have been struggling with solving captcha using selenium, java, 2captcha's api.

It clicks the verify button but doesn't solve the picture, no errors pop out..

Here's my code:

private void solveCaptcha(String apiKey) {
    String googleKey = "6Lcsv3oUAAAAAGFhlKrkRb029OHio098bbeyi_Hv"; 
    String pageUrl = "https://secure.runescape.com/m=weblogin/loginform?theme=oldschool&mod=www";
    TwoCaptchaService service = new TwoCaptchaService(apiKey, googleKey, pageUrl);         

    try {
        String responseToken = service.solveCaptcha();
        By frame = By.xpath("//iframe[@title='recaptcha challenge']");

        WebElement frameElement = driver.findElement(frame);

        driver.switchTo().frame(frameElement);
        System.out.println("Solved and Generated Response Token: " + responseToken);
        JavascriptExecutor js = (JavascriptExecutor) driver;

        js.executeScript("document.getElementById('recaptcha-token').innerHTML = '" + responseToken + "';");
        Thread.sleep(500);
        js.executeScript("document.getElementById('recaptcha-verify-button').click();");
    } catch (InterruptedException e) {
        System.out.println("ERROR case 1");
        e.printStackTrace();
    } catch (IOException e) {
        System.out.println("ERROR case 2");
        e.printStackTrace();
    }
}

I'd really appreciate the help


回答1:


Try this one.

  private void solveCaptcha(String apiKey) {
            String googleKey = "6Lcsv3oUAAAAAGFhlKrkRb029OHio098bbeyi_Hv"; 
            String pageUrl = "https://secure.runescape.com/m=weblogin/loginform?theme=oldschool&mod=www";
            TwoCaptchaService service = new TwoCaptchaService(apiKey, googleKey, pageUrl);         

            try {
                String responseToken = service.solveCaptcha();

                System.out.println("Solved and Generated Response Token: " + responseToken);
                JavascriptExecutor js = (JavascriptExecutor) driver;

                js.executeScript("document.getElementById('g-recaptcha-response').innerHTML = '" + responseToken + "';");
                Thread.sleep(500);


                js.executeScript("onSubmit()");
            } catch (InterruptedException e) {
                System.out.println("ERROR case 1");
                e.printStackTrace();
            } catch (IOException e) {
                System.out.println("ERROR case 2");
                e.printStackTrace();
            }
        }



回答2:


I think you should wait for response from API server. Something like this:

    File imgFile = new File("path to img");
    RuCaptcha.API_KEY = "fdg998fsffdbg9b0bsd0sdf";
    String CAPCHA_ID;
    String decryption;



    String response = RuCaptcha.postCaptcha(imgFile);


    if (response.startsWith("OK")) {
        CAPCHA_ID = response.substring(3);

        while (true){
            response = RuCaptcha.getDecryption(CAPCHA_ID);
            if(response.equals(RuCaptcha.Responses.CAPCHA_NOT_READY.toString())){
                Thread.sleep(5000);
                continue;
            }else if(response.startsWith("OK")){
                decryption = response.substring(3);
                break;
            }else {
                //error code
            }
        }

        //your code

    }


来源:https://stackoverflow.com/questions/59925739/solving-picture-captcha-with-selenium-and-2captcha-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!