码迷,mamicode.com
首页 > Web开发 > 详细

webElement.text()获取到内容为空

时间:2019-01-21 13:42:16      阅读:1068      评论:0      收藏:0      [点我收藏+]

标签:wait   .com   enc   getattr   attr   expec   src   string   driver   

使用webElement.text()方法获取字符串时,有时候会获取失败--获取到的内容为空

技术分享图片

 

使用 webElement.getAttribute("attributeName"),通过textContentinnerTextinnerHTML等属性获取

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()获取到内容为空

标签:wait   .com   enc   getattr   attr   expec   src   string   driver   

原文地址:https://www.cnblogs.com/lozz/p/10297977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!