public string GetValueOfCssProperty(string propertyName)
{
Dictionary<string, object> parameters = new Dictionary<string, object>();
parameters.Add("id", Id);
parameters.Add("propertyName", propertyName);
Response commandResponse = Parent.Execute(DriverCommand.GetElementValueOfCssProperty, new object[] { parameters });
return commandResponse.Value.ToString();
}