我目前正在使用HP-UFT创建API测试。该测试的目的是调用服务的端点,并接收带有项目列表的JSON响应。
项目列表中的值必须添加到新的Microsoft Excel工作表中。
我在互联网上搜索,似乎需要使用C#。
当前,我已经获得了完整的JSON并将其打印在输出中。
public void RESTActivityV26_OnAfterExecuteStepEvent(object sender, STActivityBaseEventArgs args)
{
// Declare an empty bidimensional array to store transactions later
String[,] transactionsArray = new String[100, 11];
string responseBody = "not found";
responseBody = RESTActivityV26.ResponseBody.ToString();
this.Context.UserLogger.Info("The array: " + responseBody);
}
我该怎么办?
谢谢