web-dev-qa-db-ja.com

SeleniumとJavaを使用してreCaptchaをクリックする方法

ドライバにreCaptchaボタンをクリックさせようとするとエラーが発生するのはなぜですか?

これは私がそれを動かそうとしているサイトです: https://rsps100.com/vote/760/

これは今のところ私の現在のコードです:

WebElement iframeSwitch = driver.findElement(By.xpath("/html/body/div[1]/div/div[1]/div/div/div[2]/div/form/div/div/div/div/iframe"));
driver.switchTo().frame(iframeSwitch);   
driver.findElement(By.cssSelector("div[class=recaptcha-checkbox-checkmark]")).click();  
3
alqqu

reCaptchacheckboxclick()を呼び出すには、要素が<iframe> 必要がある:

  • 目的のframeToBeAvailableAndSwitchToItに対してWebDriverWaitを誘導します。
  • 目的のelementToBeClickableに対してWebDriverWaitを誘導します。
  • 次のソリューションを使用できます。

    • コードブロック:

      public class ReCaptcha_click {
      
          public static void main(String[] args) {
      
              System.setProperty("webdriver.chrome.driver", "C:\\Utility\\BrowserDrivers\\chromedriver.exe");
              ChromeOptions options = new ChromeOptions();
              options.addArguments("start-maximized");
              options.addArguments("disable-infobars");
              options.addArguments("--disable-extensions");
              WebDriver driver = new ChromeDriver(options);
              driver.get("https://rsps100.com/vote/760");
              new WebDriverWait(driver, 10).until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(By.xpath("//iframe[starts-with(@name, 'a-') and starts-with(@src, 'https://www.google.com/recaptcha')]")));
              new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.cssSelector("div.recaptcha-checkbox-checkmark"))).click();
          }
      }
      
  • ブラウザのスナップショット:

    reCaptcha

2
DebanjanB

WebDriverWaitを使用して要素を識別します。これが役立つかどうかを確認します。

WebDriverWait wait = new WebDriverWait(driver, 30);
wait.until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(By.xpath("//iframe[starts-with(@name,'a-')]")));
WebElement element = wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("div.recaptcha-checkbox-checkmark")));
element.click();
1
KunduK

これが動作するはずのコードです。

driver.switchTo().frame("a-9wt0e8vkopnm");
driver.findElement(By.xpath("//span[@id='recaptcha-anchor']")).click();
0
supputuri

これでうまくいきました。私はセレン化物を使用していることに注意してください。通常のSeleniumコードは同じに見えます。

    import static com.codeborne.selenide.Selenide.*;

    void recaptchaTest() {

        open("https://rsps100.com/vote/760");

        switchTo().frame($x("//iframe[starts-with(@name, 'a-') and starts-with(@src, 'https://www.google.com/recaptcha')]"));

        $("div.rc-anchor-content").click();

        switchTo().defaultContent();

    }
0
gtiwari333