Esempio n. 1
0
 public bool Stale(Options options)
 {
     NativeWatiNElement.Refresh();
     return(!NativeWatiNElement.Exists ||
            (!options.ConsiderInvisibleElements &&
             !(NativeWatiNElement.Style.Display == "none" ||
               NativeWatiNElement.Style.GetAttributeValue("visibility") != "hidden")));
 }
Esempio n. 2
0
 public string this[string attributeName]
 {
     get { return(NativeWatiNElement.GetAttributeValue(attributeName)); }
 }