System.AccessViolationException in UiAutomationCore.dll(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异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UiAutomationCore.dll中的System.AccessViolationException异常
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 输入按键事件处理程序 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01