在我的一次测试中(使用Coded UI),会启动一个新选项卡,为了使我的测试流程正常,我必须关闭此选项卡。有谁知道如何处理它?</ p>
答案 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。
这应该可以解决问题。