Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Create a test step

POST /teststep

Description

Create a new test step in given test case.


Parameters

TypeNameDescriptionRequiredSchemaDefault

BodyParameter

body

test step object that needs to create.

true

907739226CreateTestStepRequest




Responses

HTTP CodeDescriptionSchema

200

Successful operation.

No Content

400

Returned if the given test case is invalid.

No Content

403

Returned if the currently authenticated user does not have permission to create new test step.

No Content

404

Returned if the given test case does not exist.

No Content

500

Returned if there is problem in creating a test step.

No Content



Consumes

  • application/json


Produces

  • application/json


Tags

  • test step

...

Edit a test step

PUT /teststep/{id}

Description

Edit step details, test data or expected result of test step. Either one of three value is required.


Parameters

TypeNameDescriptionRequiredSchemaDefault

PathParameter

id

Id of test step to edit.

true

integer (int32)


BodyParameter

body

test step object that needs to edit.

true

907739226TestStepRequest




Responses

HTTP CodeDescriptionSchema

200

Successful operation.

No Content

400

Returned if the given test step id is invalid.

No Content

403

Returned if the currently authenticated user does not have permission to edit given test step.

No Content

404

Returned if the given test step or linked test case does not exist.

No Content

500

Returned if there is problem in editing test step.

No Content



Consumes

  • application/json


Produces

  • application/json


Tags

  • test step

...