如何使用selenium点击d3图表

时间:2016-08-10 13:21:41

标签: selenium canvas d3.js

我有一个d3类型图表可以自动化。

我尝试使用动作类,但没有点击。

我使用的代码是:

[FindsBy(How = How.XPath, Using = ".//*[@class='someid]")]
public IWebElement chart{ get; set; }

Actions act = new Actions(_driver);

act.MoveToElement(chart,155, 215).Click().Build().Perform();

enter image description here

在上面的图表中,所有颜色都是可点击的,它将转到另一个页面,通过使用selenium我无法区分每种颜色并点击它们

无法区分使用不同的xpath。

附上图表的html。 enter image description here 任何人都可以帮助我,提前谢谢

0 个答案:

没有答案