See image for reference我想获取显示在工具提示上的文本,但在使用下面的代码时却显示为空
elementswait(chartSegmentList);
Actions ac = new Actions(driver);
Thread.sleep(2000);
ac.moveToElement(chartSegmentList.get(0)).build().perform();
toolTip = chartSegmentList.get(0).getAttribute("title");
System.out.println(toolTip);
我希望上面显示的文字
答案 0 :(得分:0)
只需将其添加到要显示工具提示的系列中
{
name: "Serie name", type: "line", color: "#C60C30", minSize: 9, maxSize: 9,tooltip: { visible: true, color: "#FFF", background: "#333", border: { color: "#FFF", width: 2 }, font: "11px sans-serif", format: "{3}:{0}°" }, data: []
}
请注意,在我的示例中,数据为空。