WatiN 和 Nunit 的问题

发布于 2024-11-11 15:17:27 字数 467 浏览 4 评论 0原文

我正在关注这个 WatiN - 入门教程视频,我遇到了 2 个问题

1 -我没有在垂直条上得到“绿色”点(断点出现的地方),无法按照他/她的方式运行 dll。

由于我无法“运行”dll,因此我创建了一个 webApplication,将类库添加到该应用程序,然后在 btnClick 事件上调用该函数

第二个问题是,我得到了当我点击按钮时出现以下错误,

无法加载文件或程序集 'Interop.SHDocVw,版本=1.1.0.0, 文化=中立, PublicKeyToken=db7cfd3acb5ad44e' 或 它的依赖项之一。系统 找不到指定的文件。

我该如何解决这个问题?

I'm following this WatiN - Get Started tutorial video, I'm having 2 problems

1 - I don't get the "green" points on the vertical bar (where breakpoints appear), to run the dll how he/she does.

Since I can't "run" the dll, I created a webApplication, added the class library to this application and I'm calling the function on a btnClick event

The 2nd problem is, I'm getting the following error when I click the button,

Could not load file or assembly
'Interop.SHDocVw, Version=1.1.0.0,
Culture=neutral,
PublicKeyToken=db7cfd3acb5ad44e' or
one of its dependencies. The system
cannot find the file specified.

How do I solve this issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泛滥成性 2024-11-18 15:17:27

“绿点”来自 JetBrains ReSharper - 它们允许您在 ReSharper 的测试运行器中运行单元测试。
关于第二点,选择项目对 SHDocVw 的引用并按 F4(属性)。将“嵌入互操作类型”设置为 false - 这也将启用本地复制。当您构建时,您会收到编译器警告,建议您将其改回来 - 但是嘿!

The "green points" are from JetBrains ReSharper - they allow you to run the unit test in ReSharper's Test Runner.
In relation to the 2nd point, select the project's reference to SHDocVw and press F4 (properties). Set "Embed Interop Type" to false - this will enable copy local too. When you build you'll get a compiler warning, suggesting you change it back - but hey!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文