I am getting null value every time on Android for GetAttribute while it works fine on iOS and desktop.
Method I am using:
process.WebappPage.OwnVideo.GetAttribute("currentTime");
public virtual string GetAttribute(string name)
{
return webDriver.FindElement(By).GetAttribute(name);
}
Please help me fix this.