Ejemplo n.º 1
0
 public Container(AutomationElement element, string name, IFindAutomationElements finder) : base(element, name)
 {
     _finder = finder;
     HandlerForFailingToFind = (s) => { throw new FailureToFindException(s); };
 }
Ejemplo n.º 2
0
 public ScrollViewer(AutomationElement element, string name, IFindAutomationElements finder)
     : base(element, name, finder)
 {
     _scrollPattern = new ScrollPatternWrapper(element);
 }
Ejemplo n.º 3
0
 public Panel(AutomationElement element, string name, IFindAutomationElements finder)
     : base(element, name, finder)
 {
 }
Ejemplo n.º 4
0
 public ScrollViewer(AutomationElement element, string name, IFindAutomationElements finder) : base(element, name, finder)
 {
     _scrollPattern = new ScrollPatternWrapper(element);
 }
Ejemplo n.º 5
0
 public ApplicationLauncher(TimeSpan timeout, IFindAutomationElements finder)
 {
     Timeout = timeout;
     Finder  = finder;
 }
Ejemplo n.º 6
0
 public Panel(AutomationElement element, string name, IFindAutomationElements finder) : base(element, name, finder)
 {
 }
Ejemplo n.º 7
0
 public Window(AutomationElement element, string name, IFindAutomationElements finder) : base(element, name, finder)
 {
     _processId = int.Parse(element.GetCurrentPropertyValue(AutomationElement.ProcessIdProperty).ToString());
 }
Ejemplo n.º 8
0
 public Window(AutomationElement element, IFindAutomationElements automationIdBasedFinder) : this(element, string.Empty, automationIdBasedFinder)
 {
 }
Ejemplo n.º 9
0
 public ApplicationLauncher(TimeSpan timeout, IFindAutomationElements finder)
 {
     Timeout = timeout;
     Finder = finder;
 }
Ejemplo n.º 10
0
 public Window(AutomationElement element, string name, IFindAutomationElements finder)
     : base(element, name, finder)
 {
     _processId = int.Parse(element.GetCurrentPropertyValue(AutomationElement.ProcessIdProperty).ToString());
 }
Ejemplo n.º 11
0
 public Window(AutomationElement element, IFindAutomationElements automationIdBasedFinder)
     : this(element, string.Empty, automationIdBasedFinder)
 {
 }