如何将自动化元素转换为 UITestControl

How to convert Automation element in to UITestControl

我遇到了一个场景,我必须使用 Windows UI 自动化元素来识别对象。

我想将此对象转换回 UITestControl,以便我可以使用内置方法,如 waitforcontrol ready 等。

我该怎么做?

问候,

用户 232482

您可以使用其中一种 UITestControlFactory 方法。使用 UITestControlFactory.FromNativeElement 方法(对象、字符串)。您必须将对象参数中的 UIAutomation 元素和技术名称(例如:"UIA")传递给字符串 method.More 详细信息可在 MSDN https://msdn.microsoft.com/en-us/library/microsoft.visualstudio.testtools.uitesting.uitestcontrolfactory.fromnativeelement.aspx

中找到