LeanFT など、Windows アプリ用の他の自動化ツールを使用して、視覚的な関係を指定する方法があります。たとえば、ラベルを特定した場合、その右側にあるテキスト ボックスを探してくださいと言うことができます。
Winiumでこれを行う方法はありますか?
これは、LeanFT でコードがどのように見えるかのサンプルです。
var projectButton = baseOR.PlatformWindow.ProjectList.BrowseProjects.Describe<IButton>(new ButtonDescription
{
FullType = "button",
Text = node,
Index = 0
});
return baseOR.PlatformWindow.ProjectList.BrowseProjects.Describe<IButton>(new ButtonDescription
{
FullType = "button",
Vri =
{
new VisualRelation
{
TestObject = projectButton,
HorizontalRelation = HorizontalVisualRelation.LeftAndInline,
}
}
});
ご覧のとおり、基本的に 1 つの要素を識別し、それを VisualRelation 内の TestObject として使用して別のものを識別しています。