如何从 Microsoft 测试管理器中的测试用例读取参数值
我正在尝试使用 Microsoft 测试管理器使用 C# 以编程方式执行测试用例。 为此,我想读取存储在 Microsoft 测试管理器中的参数值。 请建议我该怎么做 例如:- 读取内部参数“MY Value”的值 我尝试输入图像,但它不起作用......
问候 残酷的
I am trying to execute the testcases programatically using the microsoft test manager using c#.
For that I want to read the parameter values stored in Microsoft Test Manager.
Please suggest me how to do that
Eg:- Read the value of internal paramter "MY Value"
I tried to enter the image but its not working ...
Regards
Harsh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想您想从自动化测试实现的测试用例的数据源中读取参数。
您必须将您的测试与 TFS 上的测试用例 ID 相关联。
尝试以下代码。
请记住,您的测试方法将为测试用例数据源的每一行(迭代)运行一次。
I suppose you want to read the parameters from the datasource of the Test Case that your automated test implements.
You have to associate your test with the Test Case's Id on TFS.
Try the following code.
Have in mind that your TestMethod will run one time for each row (iteration) of the Test Case's datasource.
我认为你所描述的是数据驱动的编码 UI 测试。
http://msdn.microsoft.com/en-us/library/ee624082.aspx
I think what you describe is Data-Driven Coded UI tests.
http://msdn.microsoft.com/en-us/library/ee624082.aspx