lrdblk Posted February 26, 2017 Share Posted February 26, 2017 Can anyone help me click the reCaptcha anchor on the runescape account creation page? I'm using Selenium, here's my snippet WebDriver driver = new FirefoxDriver(); WebDriverWait wait = new WebDriverWait(driver, 40); wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//*[@id=\"recaptcha-anchor\"]/div[5]"))); driver.findElement(By.xpath("//*[@id=\"recaptcha-anchor\"]/div[5]")).click(); I've also tried searching by ID and clicking but it still doesn't work. I've made sure to wait until the page is fully loaded as well Quote Link to comment Share on other sites More sharing options...
Night Posted February 26, 2017 Share Posted February 26, 2017 IIRC the anchor is in an iframe 1 Quote Link to comment Share on other sites More sharing options...
lrdblk Posted February 26, 2017 Author Share Posted February 26, 2017 13 minutes ago, Night said: IIRC the anchor is in an iframe Thanks! I don't have much experience with web stuff haha Quote Link to comment Share on other sites More sharing options...