예제 #1
0
        public bool LookForAppBarItem(string text)
        {
            var command = new LookForAppBarItemCommand {
                AutomationIdentifier = CreateAutomationIdentifier(text)
            };

            return(SyncExecuteCommand(command) is SuccessResult);
        }
 public bool LookForAppBarItem(string text)
 {
     var command = new LookForAppBarItemCommand { AutomationIdentifier = CreateAutomationIdentifier(text) };
     return SyncExecuteCommand(command) is SuccessResult;
 }