通过Xpath搜索html元素

时间:2015-07-27 09:24:48

标签: c# html selenium xpath

我正在尝试使用selenium xpath和c#。

搜索html元素

这就是我的尝试:

var element = Driver.FindElement(By.XPath("//img[text()='logo-home.png']/@href"));
  if (element.Displayed)
        {
            Result.Pass();
        }

有什么建议吗? 提前谢谢!

1 个答案:

答案 0 :(得分:0)

在这里使用下面的xpath我们通过src属性找到图像

//img[contains(@src,'home.png')]

希望这会对你有所帮助......如果你遇到任何问题,请退回