我想id
通过 Java 获取 iframe 内部的元素属性。如何在 Java 中访问 iframe 中的元素?
driver.findElement(By.xpath("//div[4]/div/div/div[3]/div[2]/div/div/iframe")).findElement(By.id("output-img")).getAttribute("src");
这是我用来获取 iframe 内的图像 src 属性的代码。当我执行这段代码时,它会抛出一个异常说
Unable to locate element: {"method":"id","selector":"output-img"}
Command duration or timeout: 5.06 seconds
For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html
有谁知道可能是什么问题?