我正在尝试检查网页中显示的工具提示文字。会有一个问号符号,如果我们鼠标悬停在那里会显示一个文字。我想得到那个文本
我尝试了,
element = web.findElement(By.xpath(name));
element.click();
String text = element.getAttribute("title");
但不显示文字。
答案 0 :(得分:0)
请查看示例代码。
String tooltip=wd.findElement(By.xpath(locator of the element)).getAttribute("title");
System.out.println(tooltip);
希望这会有所帮助。