GET testresultdata/{testResultId}/pages/list
Returns the page list of loadtest result
URL Parameters
Name | Description |
---|---|
testResultId | Id of loadtest result |
Response body model example and description
{ "test_result_id": 64442, "pages": [ { "page_id": 543, "page_number": 2, "page_name": "Home page" }, { "page_id": 543, "page_number": 2, "page_name": "Home page" }, { "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 |
pages | Array |
The list of the test result pages |
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. |