免责声明:我是一个在工作中学习的相对编码新手。
我已经设置了一个使用 Cucumber 和 C# Selenium 的 Specflow 项目,并下载了 TestRail API。我按照现有示例在场景结束时将测试结果发布到静态测试轨道 ID。
{ Gurock.TestRail.APIClient 客户端 = new Gurock.TestRail.APIClient(" https://testrail.placeholder.com/testrail "); client.User = "user@email.com"; //把你用户的e-mail放在这里 client.Password = "password"; //把你的用户密码放在这里
Dictionary<string, object> testResult = new Dictionary<string, object>();
if (null != ScenarioContext.Current.TestError)
{
testResult["status_id"] = "5"; //failed;
testResult["comment"] = ScenarioContext.Current.TestError.ToString();
}
else
{
testResult["status_id"] = "1"; //passed
}
client.SendPost("add_result_for_case/:run_id/:case_id"); //Here I am using a hardcoded test id.}
我可以使用基于场景标签的 If 将上述代码链接到场景,例如
if (ScenarioContext.Current.ScenarioInfo.Tags.Contains("case_id"))
但问题是我必须为每个场景复制上面的代码,每次都有一个唯一的 IF 语句和标签。我想要的是一种对发布进行参数化的方法,这样我只需要一个代码块就可以将每个场景的结果发送到正确的静态 TestRail ID。