WatiN 和 Nunit 的问题
我正在关注这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“绿点”来自 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!