我们正在使用 prism 和 WPF 来构建应用程序。最近我们开始使用 UI 自动化 (UIA) 来测试我们的应用程序。但是当我们运行 UIA 测试时发生了一些奇怪的行为。这是简化的外壳:
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<TextBlock
Grid.Row="0" Grid.Column="0"
Name="loadingProgressText"
VerticalAlignment="Center" HorizontalAlignment="Center"
Text="Loading, please wait..."/>
<Border
Grid.Row="0"
x:Name="MainViewArea">
<Grid>
...
</Grid>
</Border>
<!-- Popup -->
<ContentControl
x:Name="PopupContentControl"
Grid.Row="0"
prism:RegionManager.RegionName="PopupRegion"
Focusable="False">
</ContentControl>
<!-- ErrorPopup -->
<ContentControl
x:Name="ErrorContentControl"
Grid.Row="0"
prism:RegionManager.RegionName="ErrorRegion"
Focusable="False">
</ContentControl>
</Grid>
在我们的应用程序中,我们使用图层 (Popup
和ErrorPopup
) 来隐藏MainViewArea,以拒绝对控件的访问。为了显示Popup
,我们使用下一个方法:
//In constructor of current ViewModel we store _popupRegion instance to the local variable:
_popupRegion = _regionManager.Regions["PopupRegion"];
//---
private readonly Stack<UserControl> _popups = new Stack<UserControl>();
public void ShowPopup(UserControl popup)
{
_popups.Push(popup);
_popupRegion.Add(PopupView);
_popupRegion.Activate(PopupView);
}
public UserControl PopupView
{
get
{
if (_popups.Any())
return _popups.Peek();
return null;
}
}
与此类似,我们展示ErrorPopup
了应用程序的所有元素:
// In constructor we store _errorRegion:
_errorRegion = _regionManager.Regions["ErrorRegion"]
// ---
private UserControl _error_popup;
public void ShowError(UserControl popup)
{
if (_error_popup == null)
{
_error_popup = popup;
_errorRegion.Add(_error_popup);
_errorRegion.Activate(_error_popup);
}
}
微信...
当我们像用户一样运行它时(双击应用程序图标),我们可以看到两个自定义控件(使用AutomationElement.FindFirst
方法,或通过Visual UI 自动化验证)。但是当我们使用 UI 自动化测试启动它时 -ErrorPopup
从控件树中消失。我们尝试像这样启动应用程序:
System.Diagnostics.Process.Start(pathToExeFile);
我认为我们错过了一些东西。但是什么?
编辑#1
正如@chrismead 所说,我们尝试在UseShellExecute
标志设置为 true 的情况下运行我们的应用程序,但这无济于事。但是,如果我们从cmd行启动应用程序,并手动单击按钮,Popup
并且ErrorPopup
在自动化控件树中可见。
Thread appThread = new Thread(delegate()
{
_userAppProcess = new Process();
_userAppProcess.StartInfo.FileName = pathToExeFile;
_userAppProcess.StartInfo.WorkingDirectory = System.IO.Directory.GetCurrentDirectory();
_userAppProcess.StartInfo.UseShellExecute = true;
_userAppProcess.Start();
});
appThread.SetApartmentState(ApartmentState.STA);
appThread.Start();
我们的建议之一是当我们使用方法FindAll
或FindFirst
搜索要单击的按钮时,窗口以某种方式缓存其 UI 自动化状态,并且不更新它。
编辑#2
我们发现,prism 库的扩展方法IRegionManager.RegisterViewWithRegion(RegionNames.OurRegion, typeof(Views.OurView))
有一些奇怪的行为。如果我们停止使用它,这将特别解决我们的问题。现在我们可以看到 ErrorView 和任何类型的视图PopupContentControl
,并且应用程序更新 UIA 元素树结构。但这不是答案——“停止使用此功能”!
在MainViewArea
我们有一个ContentControl
,它根据用户操作更新它的内容,我们只能看到第一个加载UserControl
到该ContentControl.Content
属性。这是这样执行的:
IRegionManager regionManager = Container.Resolve<IRegionManager>();
regionManager.RequestNavigate(RegionNames.MainContentRegion, this.Uri);
如果我们更改视图,UI 自动化树中不会执行任何更新 - 第一个加载的视图将在其中。但是在视觉上我们观察到另一个View
,并且WPFInspector正确显示它(它显示不是 UI 自动化树),但 Inspect.exe - 不是。
此外,我们关于窗口使用某种缓存的建议是错误的——在 UI 自动化客户端中的缓存我们必须显式打开,但我们不这样做。