WebElement element = driver.findElement(By.xpath(".//*[@id='highcharts-10']/*[name()='svg']/*[name()='g'][5]/*[name()='g'][4]/*[name()='path'][11]"));// action class clickActions action = new Actions(driver);action.click(element).build().perform();Thread.sleep(20000);
WebElement toolTipElement = driver.findElement(By.xpath(".//*[@id='highcharts-10']/div[1]/span")); //xpath shown tooltipSystem.out.println(toolTipElement.getText());