lrdblk Posted February 26, 2017 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
lrdblk Posted February 26, 2017 Author 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