Пример #1
0
 private AutomationElement FindModalWindowElement(SearchCriteria searchCriteria, AutomationElementFinder windowFinder)
 {
     var windowElement = windowFinder.FindWindow(searchCriteria) ?? Finder.FindWindow(searchCriteria);
     return windowElement;
 }
Пример #2
0
 private AutomationElement FindModalWindowElement(string title, Process process, AutomationElementFinder windowFinder)
 {
     var windowElement = windowFinder.FindWindow(title, process.Id) ?? Finder.FindWindow(title, process.Id);
     return windowElement;
 }