如何在Coded Ui测试中使用多个浏览器选项卡

时间:2015-01-19 18:50:59

标签: visual-studio automated-tests coded-ui-tests

在我的一次测试中(使用Coded UI),会启动一个新选项卡,为了使我的测试流程正常,我必须关闭此选项卡。有谁知道如何处理它?<​​/ p>

1 个答案:

答案 0 :(得分:0)

IE中的新标签是WinTabPage类型(WinForms控件)。 你应该先找到它。有点像:

var tab = new WinTabPage(parent);

        tab.SearchProperties.Add("Name", "New tab's name");

        var CloseButton = new WinButton(tab);
        CloseButton .SearchProperties.Add("Name", "Close Button Name");

        Mouse.Click(CloseButton);

其中父级是BrowserWindow。

这应该可以解决问题。