如何获取我在NATIVE App中的元素的“background-color”属性的值

时间:2017-04-03 14:31:48

标签: c# appium

我正在使用c#(Appium的v3.0.02)开发测试代码,我需要获取我在NATIVE App中的元素的“background-color”属性值。

以下是代码的一部分:

ReadOnlyCollection obj = driver.FindElementsByName("lblProtocolo");

for(int i=0;i<obj.Count;i++)
{
var str = obj[i].GetCssValue("background-color");
}

但正在抛出异常:

Test method ASEXamarin.Shared.Tests.TelaInicial.TesteRows threw exception: 
System.NotImplementedException: Not yet implemented. Please help us: http://appium.io/get-involved.html

在NATIVE Apps中有任何形式可以获得此属性吗?

有相关帖子: Appium Android UI testing - how to verify the style attribute of an element?

0 个答案:

没有答案