如何使用c / code for ranorex工具验证给定组框中的文本属性,有人可以帮助我

时间:2015-06-19 20:09:52

标签: c#-4.0 ranorex

我尝试使用c#代码验证组框中的文本属性,但未能为工具开发代码,是否有人可以帮助我?

1 个答案:

答案 0 :(得分:0)

您可以使用Validate.Attribute()方法:

public static void Attribute(
    RepoItemInfo itemInfo,
    string name,
    Object value
)

参数:

itemInfo (RepoItemInfo): 存储库项的RepoItemInfo对象。

name (String): 要验证的属性的名称。

value (Object): 要匹配的属性的值。

Ranorex API documentation可以找到更多方法。

示例:

Validate.Attribute(repo.Explorer.StartInfo, "Text", "yourtext");

我希望有所帮助。