当我尝试找到一个元素时,我收到以下错误。我的查找方法如下。
public Element FindMenuItem(string menuItemName)
{
var menuItem = Element(Find.ByText(menuItemName));
var cells = ((ElementContainer<Element>)(menuItem)).TableCells;
return cells.Count > 0 ? cells.First() : menuItem;
}
错误:
WatiN.Core.Exceptions.WatiNException:由于没有元素查找器可用,因此无法找到该元素。