getAttribute 或 getText [重复]
Posted
技术标签:
【中文标题】getAttribute 或 getText [重复]【英文标题】:getAttribute or getText [duplicate] 【发布时间】:2019-04-15 20:31:43 【问题描述】:我有一个脚本可以自动注册一个 Facebook 帐户,如下图所示:
我现在想提取我写的内容,所以我尝试了以下代码但没有出现?
WebElement fNameText = driver.findElement(By.name("firstname"));
String Txt = fNameText.getText();
System.out.println(Txt);
【问题讨论】:
【参考方案1】:您可以使用String Txt = fNameText.getAttribute("value");
获取文本框中的值
【讨论】:
以上是关于getAttribute 或 getText [重复]的主要内容,如果未能解决你的问题,请参考以下文章
selenium中WebElement.getText()为空解决方法
getattribute()与getparameter()的区别