UiAutomationCore.dll中的System.AccessViolationException异常

System.AccessViolationException in UiAutomationCore.dll(UiAutomationCore.dll中的System.AccessViolationException异常)
本文介绍了UiAutomationCore.dll中的System.AccessViolationException异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们有一个测试自动化工具,它经常使用UI Automation API。在最新版本的Windows(如Windows 10 21H2、Windows 11)中,API在调用AutomationElement类的方法之一时抛出异常System.AccessViolationException。 以下是我们的代码:

AutomationElement uiaElement;
....            
var cr = new CacheRequest
{
    AutomationElementMode = AutomationElementMode.None,
    TreeScope = TreeScope.Element,
    TreeFilter = Automation.RawViewCondition
};
cr.Add(InvokePattern.Pattern);
cr.Add(TogglePattern.Pattern);
cr.Add(RangeValuePattern.Pattern);
cr.Add(ValuePattern.Pattern);
cr.Add(ItemContainerPattern.Pattern);
cr.Add(VirtualizedItemPattern.Pattern);

var cachedElement = uiaElement.GetUpdatedCache(capabilitiesCacheRequest);
和堆栈跟踪:

方法GetUpdatedCache来自AutomationElement(UIAutomationClient.dll),并调用来自UIAutomationCore.dll调用的RawUiaHPatternObjectFromVariant方法-此方法引发异常,我不确定如何继续,因为一切都在Windows的早期版本上运行正常。

目前我们只是尝试处理此异常-从长远来看当然是不可接受的。

值得一提的是,我们测试的两个新版本的Windows都处于预览/测试版状态。有没有可能某些API在这样的版本中被禁用了(当然它们也可能被破坏),有谁有过这种情况的经验吗?我问的是两者的问题--解决一般的System.AccessViolationException和在测试版/预览版中不能正常工作的API。

推荐答案

您可能需要完全关闭WindowsUAC和Defender/SmartScreen,并将manifest添加到exe以在提升的帐户下运行测试。

这篇关于UiAutomationCore.dll中的System.AccessViolationException异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)