我正在尝试在WPF应用程序上创建编码的UI测试。我正在使用Visual Studio 2019创建/运行测试。
我遇到一种奇怪的行为,其中WPF按钮在启动时折叠(但后来变为可见/启用),但未使用与该按钮关联的AutomationElement对象可用的任何FindXXX方法显示任何子节点。未折叠的其他按钮似乎没有此问题。我应该注意,我期望这个WPF按钮的子节点的原因是在XAML中它的定义类似于以下内容:
<Button x:Name="ButtonStop" Grid.Row="0" Grid.Column="2" Command="{Binding TheVm.StopCommand}">
<Button.Style>
<Style TargetType="{x:Type Button}" BasedOn="{StaticResource ButtonStyleA}">
<Setter Property="Visibility" Value="Collapsed"/>
<Style.Triggers>
<DataTrigger Binding="{Binding TheVm.DisplayButton}" Value="False">
<Setter Property="Visibility" Value="Visible"/>
</DataTrigger>
</Style.Triggers>
</Style>
</Button.Style>
<StackPanel Style="{StaticResource ControlsStackPanelStyle}">
<Image Source="pack://application:,,,/Assets/icon1.png" Style="{StaticResource ControlsButtonImageStyle}"/>
<ContentPresenter Content="Stop" Style="{StaticResource ControlsButtonTextStyle}"/>
</StackPanel>
</Button>
使用INSPECT.EXE应用程序,我可以正确看到此按钮的子节点,但是当遍历AutomationElement时,我无法访问它们。
我用来检查人类可读文本的测试代码是:
// Wait for 'Stop' button to become enabled, and verify correct text
uIButtonStopButton.WaitForControlEnabled();
var displayText = (!uIButtonStopButton.DisplayText.Equals(""))
? uIButtonStopButton.DisplayText
: GetFirstNodeText(uIButtonStopButton.NativeElement as AutomationElement;
Assert.AreEqual("Stop", displayText, "Stop button doesn\'t have correct text.");
GetFirstNodeText方法如下:
private static string GetFirstNodeText(AutomationElement automationElement)
{
if (automationElement != null)
{
// Get first AutomationElement node that is a 'text' control-type
var textEl = automationElement.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.LocalizedControlTypeProperty, "text"));
if (textEl != null) return textEl.Current.Name;
}
return "";
}
另一条(有趣的)信息:我使用Appium / WinAppDriver尝试了类似的测试,并且体验几乎相同-在以前折叠的按钮上没有子节点。
可能是什么原因造成的,您对此有何建议?
答案 0 :(得分:1)
要验证您使用的是最新的AutomationElement
对象,请务必检查this有关刷新控件的问题。
但是由于您提到使用WinAppDriver存在几乎相同的问题,所以我宁愿认为问题出在被测试的应用程序上。 如果您可以访问源代码/正在使用该代码的开发人员,请仔细查看涉及此按钮及其子元素的代码/ xaml。该问题很可能在那儿找到。