Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 622 Bytes

read-available-apis.md

File metadata and controls

43 lines (33 loc) · 622 Bytes

read available apis - Tests API

The read available apis method return a list of all web APIs that the DUT can be tested for. It returns the human readable API name, as well as the directory name under which all corresponding tests reside.

HTTP Request

GET /api/tests/apis

Response Payload

[
  {
    "path": "String",
    "name": "String"
  },
  ...
]

Example

Request:

GET /api/tests/apis

Response:

[
  {
    "path": "/2dcontext",
    "name": "2D Context"
  },
  {
    "path": "/media-source",
    "name": "Media Source"
  },
  ...
]