我正在使用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?