我正在尝试为编码的UI测试中的控件创建自定义属性,而我发现的每个示例都是完全没用的。
例如:http://msdn.microsoft.com/en-us/library/hh552522.aspx
public override int GetControlSupportLevel(UITestControl uiTestControl)
{
// For MSAA, check the control type
if (string.Equals(uiTestControl.TechnologyName, "MSAA",
StringComparison.OrdinalIgnoreCase) &&
(uiTestControl.ControlType == "Chart"||uiTestControl.ControlType == "Text"))
{
return (int)ControlSupport.ControlSpecificSupport;
}
// This is not my control, so return NoSupport
return (int)ControlSupport.NoSupport;
}
// Get the property value by parsing the accessible description
public override object GetPropertyValue(UITestControl uiTestControl, string propertyName)
{
if (String.Equals(propertyName, "State", StringComparison.OrdinalIgnoreCase))
{
object[] native = uiTestControl.NativeElement as object[];
IAccessible acc = native[0] as IAccessible;
string[] descriptionTokens = acc.accDescription.Split(new char[] { ';' });
return descriptionTokens[1];
}
// this is not my control
throw new NotSupportedException();
}
如果您有2个不同的控件是“文本”控件,则此代码完全没用 - 无法确定它是哪种类型的文本控件。 “ControlType”属性非常具有误导性,因为它不会像其名称那样返回控件的类型。它更像是一个控件类别。你如何确定控件究竟是什么?
答案 0 :(得分:1)
你可以使用这样的东西。希望这会有所帮助。
string controlType = control.GetProperty(XamlControl.PropertyNames.ControlType).ToString();