0

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

试过了

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

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

但不显示文本。

4

1 回答 1

0

请找到示例代码。

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

希望这会有所帮助。

于 2013-10-30T07:37:34.807 回答