问题描述
我知道 .getAttribute("innerHTML")
,这是检索 h1
标记值的方法之一,但我的 HTML 如下所示:
I am aware of .getAttribute("innerHTML")
, which is one of the ways to retrieve the value of h1
tag but my HTML looks like this:
我可以到达 h1
标签,但无法到达 innerHTML
.
I can reach h1
tag but not able to reach innerHTML
.
我想在 Java 中使用 selenium WebDriver 从 innerHTML
检索文本
I want to retrieve text from innerHTML
using selenium WebDriver in Java
我使用的解决方案:首先我找到了 h1 标签使用@FindBy(xpath = "//*[@id=\"main\"]/h1")
元素名称为 Findelement,然后使用 Findelement.getAttribute("[0].innerHTML")
检索文本,但在运行程序时抛出 java.lang.NullPointerException
.
Solution I used :First I located h1 tag using @FindBy(xpath = "//*[@id=\"main\"]/h1")
with element name as Findelement, then used Findelement.getAttribute("[0].innerHTML")
to retrieve text but while running program is throwing java.lang.NullPointerException
.
推荐答案
找到解决方案.我使用下面的代码来检索文本.
Found out the solution. I used the below code to retrieve the text.
JavascriptExecutor js = (JavascriptExecutor)driver;
String sText = ((JavascriptExecutor) driver).executeScript("return arguments[0].innerHTML;",driver.findElement(By.xpath("//*[@id=\"main\"]/h1"))).toString();
这篇关于Selenium Java:来自 h1 标签的文本检索的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!