我正在尝试获取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的新手,任何帮助都会很感激。谢谢!
答案 0 :(得分:2)
使用selenium.getText("xpath to ur span")
而不是使用selenium.getAttribute。
由于getAttribute()
方法提供任何给定标记内的属性值。