单击/选择CodedUI测试中的复选框

时间:2015-06-04 17:46:46

标签: winforms coded-ui-tests

我正在尝试创建自动化Code​​dUI测试脚本(使用Visual Studio Premium 2013),我尝试单击/选择复选框。我在程序代码中有几个节点的程序代码名称。

如何让VS 点击这些复选框

谢谢:)

1 个答案:

答案 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;