我正在尝试创建自动化CodedUI测试脚本(使用Visual Studio Premium 2013),我尝试单击/选择复选框。我在程序代码中有几个节点的程序代码名称。
如何让VS 点击这些复选框?
谢谢:)
答案 0 :(得分:0)
检查您在已识别的GetChildren()
上致电WinTreeItem
时收到的内容。
如果列表中的WinCheckBox
很可能是您需要定义的内容。
var checkBox = new WinCheckBox(yourTreeItem);
checkBox.TryFind();
Mouse.Click(checkBox);
现在值得一提的是CodedUI
也提供了WinCheckBoxTreeItem
类型的控件。这也可能绑定到您想要的复选框。
var treeCheckItem = new WinCheckBoxTreeItem(yourWinTree);
// add search properties like display text
treeCheckItem.TryFind();
treeCheckItem.Checked = true;