如何使用Selenium RC从简单的HTML标签中获取文本?

时间:2014-04-09 18:04:51

标签: selenium junit selenium-rc

如何从简单的html标签中获取文本

<h2>ABCDEF</h2>

使用Selenium RC?

我想匹配确切的文字。如果我使用isTextPresent(),即使我放了selenium.isTextPresent("ABC"),它也会返回true。

这是HTML标记<h2>

1 个答案:

答案 0 :(得分:-1)

然后你需要做以下

strText = selenium.getText("//h2")

if strText.equals("ABCDEF")
     System.out.println("TextMatch")
else
     System.out.println("Text Mismatch")