使用WatiN检查打开的浏览器

时间:2009-12-20 13:13:36

标签: watin

我想检查IE是否已经打开

If IE is opened so i.e. Goto("WWW.GOOGLE.COM");
else open new IE and goto Yahoo.com

例如:

 br = new WatiN.Core.IE(@textBox1.Text);

然后当我按下一个按钮时,我想检查IE是否打开并执行上一个场景。

1 个答案:

答案 0 :(得分:4)

使用:

IE.Exists(Find.ByUrl("Yahoo.com"));

在WatiN 2.0 RC1中,这将是:

Browser.Exists<IE>(Find.ByUrl("Yahoo.com"));