webElement.text()获取到内容为空
Posted 面向zz编程
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webElement.text()获取到内容为空相关的知识,希望对你有一定的参考价值。
使用webElement.text()方法获取字符串时,有时候会获取失败--获取到的内容为空
使用 webElement.getAttribute("attributeName
"),通过textContent
, innerText
, innerhtml
等属性获取
public String getText(String string){ WebDriverWait wait = new WebDriverWait(driver, 10); WebElement webElement = wait.until(ExpectedConditions.presenceOfElementLocated(By.xpath(string))); return webElement.getAttribute("innerText"); }
以上是关于webElement.text()获取到内容为空的主要内容,如果未能解决你的问题,请参考以下文章
C++中怎样获取一个文件的大小,怎样判断一个文件是不是为空(文件存在,但是没有内容)
selenium无法获取到标签的文本内容(text)的解决方法