在Visual Studio Web应用程序中,在部署成功构建环境以运行冒烟测试之后,我要添加一个任务。烟雾测试的TestCategory为“ SmokeTest”。

我要完成的任务是仅使任务运行具有“ SmokeTest”的TestCategory的TestMethod。我已经读到我需要做的是在“ Override test run parameters”字段中添加一些内容,但是我不确定到底是什么。

附加信息:
-使用Visual Studio 2017社区
-使用带有C#的Selenium框架

c# - Visual Studio-使用特定的TestCategory值运行自动化的TestMethods-LMLPHP

最佳答案

您需要找到“测试过滤条件”字段并输入以下内容。

TestCategory = SmokeTest

c# - Visual Studio-使用特定的TestCategory值运行自动化的TestMethods-LMLPHP

资料来源:https://blogs.msdn.microsoft.com/devops/2015/09/04/supplying-run-time-parameters-to-tests/

关于c# - Visual Studio-使用特定的TestCategory值运行自动化的TestMethods,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48814368/

10-10 21:38