コード例 #1
0
 protected AutomationElementWrapper(AutomationElement element, string name, IWaitForEvents waiter)
 {
     if (element == null)
     {
         throw new NullReferenceException("No element was found for this " + GetType().Name);
     }
     _element = element;
     _name = name;
     _waiter = waiter;
 }
コード例 #2
0
 protected AutomationElementWrapper(AutomationElement element, string name, IWaitForEvents waiter)
 {
     if (element == null)
     {
         throw new NullReferenceException("No element was found for this " + GetType().Name);
     }
     _element = element;
     _name    = name;
     _waiter  = waiter;
 }
コード例 #3
0
 public StubAutomationElementWrapper(AutomationElement element, string name, IWaitForEvents waiter)
     : base(element, name, waiter)
 {
 }
コード例 #4
0
 public StubAutomationElementWrapper(AutomationElement element, string name, IWaitForEvents waiter) : base(element, name, waiter)
 {
 }