示例#1
0
 public IEnumerable <(string name, string color)> GetMandatoryFieldsBorderColor()
 {
     //skipping radio buttons which doesn't have border
     return(MandatoryFields.Where(field => field.GetProperty("type") != "radio").Select(field => (name: field.GetProperty("name"), color: field.GetCssValue("border-color"))));
 }