Example #1
0
 public static WatiN.Core.Button click(this WatiN.Core.Button button)
 {
     if (button != null)
     {
         button.Click();
     }
     return(button);
 }
Example #2
0
 public static string value(this WatiN.Core.Button button)
 {
     return((button != null)
                ? button.Value
                : "");
 }
Example #3
0
 public static string outerText(this WatiN.Core.Button button)
 {
     return((button != null)
                ? button.OuterText
                : "");
 }
 public static string name(this WatiN.Core.Button button)
 {
     return((button != null)
                ? button.Name.trim()
                : "");
 }