图案Invoke()异常:由于对象的当前状态,操作无效

本文关键字:状态 操作 无效 异常 Invoke 图案 于对象 对象 | 更新日期: 2023-09-27 18:26:00

我是c#的新手。我正在寻找解决方案(要检查的应用程序可以从http://download.eset.com/special/ESETLogCollector.exe

代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
using System.Threading;
using System.Windows.Automation;

namespace LogCollector
{
    class Program
    {
        static void Main(string[] args)
        {
            ProcessStartInfo proc = new ProcessStartInfo();
            proc.UseShellExecute = true;
            proc.WorkingDirectory = Environment.CurrentDirectory;
            proc.FileName = "C:''robot''ESETLogCollector.exe";
            proc.Verb = "runas";
            Process.Start(proc);
            System.Threading.Thread.Sleep(2000);
            Console.WriteLine("Ahoj");
            AutomationElement desktop = AutomationElement.RootElement;
            Condition cond = new PropertyCondition(AutomationElement.NameProperty, "ESET Log Collector");
            AutomationElement elc = desktop.FindFirst(TreeScope.Children, cond);
            Console.WriteLine(elc.Current.Name);
            String save_path = "";
            Condition cond1 = new PropertyCondition(AutomationElement.AutomationIdProperty, "1005");
            try
            {
                AutomationElement save_as = elc.FindFirst(TreeScope.Subtree, cond1);
                Console.WriteLine(save_as.Current.AutomationId);
                save_path = save_as.Current.Name;
            }
            catch (System.Exception e)
            {
                Console.WriteLine("EX: {0}", e.Message);
            }
            if (System.IO.File.Exists(save_path))
            {
                System.IO.File.Delete(save_path);
                Console.WriteLine(save_path);
            }
            Condition cond2 = new PropertyCondition(AutomationElement.AutomationIdProperty, "1002");
            AutomationElement collect = elc.FindFirst(TreeScope.Children, cond2);
            Console.WriteLine(collect.Current.Name);
            try
            {
                Object outObject;
                collect.TryGetCurrentPattern(InvokePattern.Pattern, out outObject);
                InvokePattern pattern = outObject as InvokePattern;
                pattern.Invoke();
            }
            catch (System.Exception e)
            {
                Console.WriteLine("EX: {0}", e.Message);
            }
            Console.ReadKey();
        }
    }
}

如果我想调用buttonclick,我只剩下:由于对象的当前状态,操作无效

我真的不知道这里发生了什么。有人能帮我吗?

Ty

图案Invoke()异常:由于对象的当前状态,操作无效

操作可能失败,因为您没有以管理员身份运行自动化应用程序,而ESET日志收集器是以提升的权限运行的。

UI自动化安全概述描述了安全模型以及如何与以更高权限级别运行的进程进行通信(即,您需要一个带有包含特殊属性的清单文件的签名应用程序)。

相关文章: