Hi everyone!!
There is any changes about this topic?!?!
I'm developing a test code in c# (v3.0.02 of Appium) and I need to get the value of "background-color" property of an element that I have in my NATIVE App.
Here is a part of the code:
ReadOnlyCollection obj = driver.FindElementsByName("lblProtocolo");
for(int i=0;i<obj.Count;i++)
{
var str = obj[i].GetCssValue("background-color");
}
but is throwing an exception:
Test method ASEXamarin.Shared.Tests.TelaInicial.TesteRows threw exception:
System.NotImplementedException: Not yet implemented. Please help us: http://appium.io/get-involved.html
There is any form to get this property in NATIVE Apps?
Thanks!!!