VS2008中自定义提取规则不起作用
我正在 VS2008 中创建一个 Web 测试并扩展了 ExtractionRule。现在,当我在使用提取规则的地方运行测试时,它会显示“请求失败:无法加载类型‘TypeName、版本、区域设置等’。即使我在设计器中添加了我的类,也会发生这种情况。
I'm creating a Web Test in VS2008 and have extended ExtractionRule. Now when I run test where my extraction rule used it displays "Request failed: Could not load type 'TypeName, version, locale etc'. This happens even though I added my class in designer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
回答我自己的问题。 必须将提取规则添加到 WebTests 项目之外的OTHER项目中。我倾向于为此创建 WebTests.Helpers 项目。之后,必须引用该项目并将其编译以使用自定义提取规则。
Answering my own question. One MUST add his extraction rules to project OTHER than his WebTests project. I tend to create WebTests.Helpers project for that. Afterwards one must reference that project and compile it to use custom extraction rules.
只是为了完整性:另一个选项(如果您不想添加第二个项目)是将项目的 dll 文件显式添加到 TestSettings 中的 Deployment 部分。
Just for completeness: another option (if you don't want to add a 2nd project) is to explicitly add your project's dll file to the Deployment section in the TestSettings.