我尝试使用c#代码验证组框中的文本属性,但未能为工具开发代码,是否有人可以帮助我?
答案 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");
我希望有所帮助。