gpt4 book ai didi

watin - 开始使用 Watin

转载 作者:行者123 更新时间:2023-12-05 01:34:12 26 4
gpt4 key购买 nike

我正在尝试做快速入门示例,我在 VS2010 中使用 NuGet 引入了引用,我在网页上抓取了示例代码,我看到了我的 NUnit session 窗口,我单击了绿色箭头,但浏览器没有被调用(不启动)。我错过了什么?

using System;  
using NUnit.Framework;
using WatiN.Core;

namespace FirstWatinProject
{
[TestFixture]
public class Class1
{

[Test]
[STAThread]
public void SearchForWatiNOnGoogle()
{
using (var browser = new IE("http://www.google.com"))
{
browser.TextField(Find.ByName("q")).TypeText("WatiN");
browser.Button(Find.ByName("btnK")).Click();
Assert.IsTrue(browser.ContainsText("WatiN"));
}
}

}
}

我在 NUnit session 窗口中收到以下错误;

SearchForWaitOnGoogle Failed: System.IO.FileNotFoundException: Could not load file or assembly 'Interop.SHDocVw, Version=1.1.0.0, Culture=neutral etc...

最佳答案

好的,解决了错误,如下另一个溢出线程结束;
WatiN System.IO.FileNotFoundException Interop.SHDocVw

但是,序列中的一个关键操作是在将 Interop.SHDocVw dll 的“嵌入互操作类型”属性设置为“假”之后构建类库项目;

然后你可以点击 NUNIT Sessions 窗口中的绿色箭头,一两秒后你会看到 IE 浏览器启动。只需单击它,您就会看到您编程的任何操作。

上帝在细节中!

关于watin - 开始使用 Watin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8728486/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com