GET testresultdata/{testResultId}/page/{pageId}/data
Returns the page data of loadtest result
URL Parameters
| Name | Description |
|---|---|
| testResultId | Id of loadtest result |
| pageId | Page id |
Response body model example and description
{
"test_result_id": 64442,
"data": {
"response_times": [
0.9,
1.9,
2.9
],
"timestamps": [
0.9,
1.9,
2.9
],
"page_id": 543,
"page_number": 2,
"page_name": "Home page"
},
"exception": "An exception was encountered during execution: {exception details...}"
}
| Name | Type | Description |
|---|---|---|
| test_result_id | Integer |
The ID of the test result |
| data | Object |
Test result page |
| response_times | Array |
Array of response time values |
| timestamps | Array |
Array of timestamp values |
| page_id | Integer |
The ID of the page |
| page_number | Integer |
The number of the page |
| page_name | String |
The name of the page |
| exception | String |
Any exception that arose during the function call. In case no exception was thrown this will be an empty string. |