0

任何人也使用过 TestRail(可能通过单击按钮)在 Ranorex 中触发自动测试运行并将结果返回到 testrail。

是否可以与我们分享您所做的步骤以及示例代码。

您能否突出显示您如何在 Ranorex 中运行多个测试用例。

谢谢!

4

1 回答 1

0

我使用了适用于 .NET 的 TestRails API 绑定(http://docs.gurock.com/testrail-api2/bindings-dotnet)在 Ranorex 中编写了一个简单的 C# 文件。

这个想法是在 TestRail 和 Ranorex 中进行测试运行,将这些测试的测试执行成功发布到 TestRail。

var testCase = TestCase.Current.Parameters["test_case"];
var runID = TestSuite.Current.Parameters["run_id"];

if (String.IsNullOrEmpty(testCase)) 
{
    Report.Failure("Test case '" + TestCase.Current.Name + "' has no test case id defined !");
    return;
}
if (String.IsNullOrEmpty(runID)) 
{
    Report.Failure("Test suite '" + TestSuite.Current.Name + "' has no run id defined !");
    return;
}

APIClient client = new APIClient("https://<your_server>");
client.User = "<user>";
client.Password = "<api_key>";

var data = new Dictionary<string, object>
{
    { "status_id", 1 }, // 1 = successful
    { "comment",  "test case executed in Ranorex" }
};
JObject r = (JObject) client.SendPost("add_result_for_case/" + runID + "/" + testCase, data);
Ranorex.Report.Info(r.ToString());

这会将一个案例的结果发布到 Ranorex(因此add_result_for_case方法。runID是我在执行套件时在命令行中提供的参数,Ranorex 中的每个测试用例对应于 TestRail 中的一个测试用例,并且必须保存测试用例 ID .

查看http://docs.gurock.com/testrail-api2/start了解 TestRail api 提供的可能性

于 2015-12-10T12:55:32.063 回答