コード例 #1
0
ファイル: Container.cs プロジェクト: pako4u2k/wipflash
 public Container(AutomationElement element, string name, IFindAutomationElements finder) : base(element, name)
 {
     _finder = finder;
     HandlerForFailingToFind = (s) => { throw new FailureToFindException(s); };
 }
コード例 #2
0
ファイル: ScrollViewer.cs プロジェクト: pako4u2k/wipflash
 public ScrollViewer(AutomationElement element, string name, IFindAutomationElements finder)
     : base(element, name, finder)
 {
     _scrollPattern = new ScrollPatternWrapper(element);
 }
コード例 #3
0
ファイル: Panel.cs プロジェクト: pako4u2k/wipflash
 public Panel(AutomationElement element, string name, IFindAutomationElements finder)
     : base(element, name, finder)
 {
 }
コード例 #4
0
 public ScrollViewer(AutomationElement element, string name, IFindAutomationElements finder) : base(element, name, finder)
 {
     _scrollPattern = new ScrollPatternWrapper(element);
 }
コード例 #5
0
 public ApplicationLauncher(TimeSpan timeout, IFindAutomationElements finder)
 {
     Timeout = timeout;
     Finder  = finder;
 }
コード例 #6
0
ファイル: Panel.cs プロジェクト: pako4u2k/wipflash
 public Panel(AutomationElement element, string name, IFindAutomationElements finder) : base(element, name, finder)
 {
 }
コード例 #7
0
ファイル: Window.cs プロジェクト: pako4u2k/wipflash
 public Window(AutomationElement element, string name, IFindAutomationElements finder) : base(element, name, finder)
 {
     _processId = int.Parse(element.GetCurrentPropertyValue(AutomationElement.ProcessIdProperty).ToString());
 }
コード例 #8
0
ファイル: Window.cs プロジェクト: pako4u2k/wipflash
 public Window(AutomationElement element, IFindAutomationElements automationIdBasedFinder) : this(element, string.Empty, automationIdBasedFinder)
 {
 }
コード例 #9
0
 public ApplicationLauncher(TimeSpan timeout, IFindAutomationElements finder)
 {
     Timeout = timeout;
     Finder = finder;
 }
コード例 #10
0
ファイル: Window.cs プロジェクト: pako4u2k/wipflash
 public Window(AutomationElement element, string name, IFindAutomationElements finder)
     : base(element, name, finder)
 {
     _processId = int.Parse(element.GetCurrentPropertyValue(AutomationElement.ProcessIdProperty).ToString());
 }
コード例 #11
0
ファイル: Window.cs プロジェクト: pako4u2k/wipflash
 public Window(AutomationElement element, IFindAutomationElements automationIdBasedFinder)
     : this(element, string.Empty, automationIdBasedFinder)
 {
 }