我在用Java编写Webdriver测试时试图从textarea读取文本。由于某些原因,我在使用时返回null .getAttribute():
.getAttribute()
WebElement text = wd.findElement(By.id("edit-pi-sample-geo-id")); String textagain = text.getAttribute("aaaa");
我该如何解决?
我得到了这个工作。这是解决方案-
WebElement text = wd.findElement(By.id("edit-pi-analytics-tms-id")); String textagain = text.getAttribute("value");
我在我以前发布的代码示例中的textarea中使用了实际值,这有点愚蠢。谢谢大家帮助