0

我正在尝试获取 div 模式弹出对话框的返回值。但是,我无法通过使用

selenium.GetAttribute("id=lblPopUpMessageType");

我希望实现的是,当我能够获得价值时,我就可以了解是否完成了哪些进展。

例如,代码如下:

 <span id="lblPopUpMessageType">error</span>  (If i get the "error" value i know it is fail) 
or 
 <span id="lblPopUpMessageType">success</span> (This mean success)

好吧,我无法通过使用上述功能。我也试过 Selenium.GetElementIndex().ToString() 但没有用。我是 Selenium 的新手,任何帮助将不胜感激。谢谢!

4

1 回答 1

2

使用selenium.getText("xpath to ur span")而不是使用 selenium.getAttribute。

AsgetAttribute()方法给出任何给定标签内的属性值。

于 2012-11-20T08:52:29.020 回答