如何从简单的html标签中获取文本
<h2>ABCDEF</h2>
使用Selenium RC?
我想匹配确切的文字。如果我使用isTextPresent()
,即使我放了selenium.isTextPresent("ABC")
,它也会返回true。
这是HTML标记<h2>
。
答案 0 :(得分:-1)
然后你需要做以下
strText = selenium.getText("//h2")
if strText.equals("ABCDEF")
System.out.println("TextMatch")
else
System.out.println("Text Mismatch")