I got few API's like to the number of testcases (count) in a particular Suite ID
GET https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/Suites/{suiteId}/TestCase?api-version=5.0-preview.2
From this we can able to get the list of testcases the in the Suite ID from the Azure Test plan.
In the same way, we are having an GET API
GET https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/Suites/{suiteId}/TestPoint?api-version=5.0-preview.2
From this we are able to the get exact point information. But with this API we are getting the only the last run details of that particular point or testcase. We are not getting the details of Test case history.
I have found an API from Microsoft
tried in in postman by giving body
POST https://dev.azure.com/{organization}/{project}/_apis/test/Results/testhistory?api-version=6.0-preview.2
Tried to test history
Body:
{
"automatedTestName":"E2E_K1_B5_009",
"testCaseId":82167
}
Excepted result: to get the entire history of test case
Actual result :
{
"$id": "1",
"innerException": null,
"message": "Value 0 for argument GroupBy is not supported.",
"typeName": "Microsoft.TeamFoundation.TestManagement.WebApi.InvalidPropertyException, Microsoft.TeamFoundation.TestManagement.WebApi",
"typeKey": "InvalidPropertyException",
"errorCode": 0,
"eventId": 3000
}
I need an API to get entire testcase history, like how many times the test case is executed in a particular suite
Is there any of the API, like which provides the details of test case execution history to know the count of test case execution in a particular suite??
Please note that, using the Test History - Query REST API we can only get history of a test method (
Automated tests
). It's not applied for manual tests.According to the error message, you need to specify a valid
GroupBy
value in the request body. See Request Body for details.Test the scenario, it works with the value
"groupBy": "Branch",
specified in the request body.For manual tests, there isn't an API endpoint to achieve that directly. However, we can get the test case run history from UI.
TestPlans
>Test suite
> Switch toExecute
tab and select theTestCase
for which you want to see the execution history.Select
View execution history
from the context, we can see the test case run history.We can also click the link "
Open execution history for current test point
" to see the results.