如何在selenium中显示工具提示文本

时间:2013-10-30 07:08:12

标签: selenium

我正在尝试检查网页中显示的工具提示文字。会有一个问号符号,如果我们鼠标悬停在那里会显示一个文字。我想得到那个文本

尝试了

element = web.findElement(By.xpath(name));

element.click();
String text = element.getAttribute("title");

但不显示文字。

1 个答案:

答案 0 :(得分:0)

请查看示例代码。

String tooltip=wd.findElement(By.xpath(locator of the element)).getAttribute("title");
System.out.println(tooltip);

希望这会有所帮助。