使用selenium webdriver c#获取元素的位置

时间:2015-09-09 16:21:57

标签: c# selenium webdriver specflow

我无法获得元素的位置。这就是我到目前为止所拥有的 我已经定义了元素

[FindsBy(How = How.Id, Using = "column-a")] 
private IWebElement _columnA;
private string [] startLoc;
private string [] endLoc;

然后在我的方法中:

startLoc[0] = _columnA.Location.X.ToString() + " " + _columnA.Location.Y.ToString();

在运行时,我得到一个类型为' System.NullReferenceException'的异常。发生在framework.dll中但未在用户代码中处理

附加信息:未将对象引用设置为对象的实例。

0 个答案:

没有答案