Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.17 KB

TestStepCreate.md

File metadata and controls

34 lines (25 loc) · 1.17 KB

TestStepCreate

Properties

Name Type Description Notes
action str [optional]
expected_result str [optional]
data str [optional]
position int [optional]
attachments List[str] A list of Attachment hashes. [optional]
steps List[object] Nested steps may be passed here. Use same structure for them. [optional]

Example

from qaseio.models.test_step_create import TestStepCreate

# TODO update the JSON string below
json = "{}"
# create an instance of TestStepCreate from a JSON string
test_step_create_instance = TestStepCreate.from_json(json)
# print the JSON string representation of the object
print TestStepCreate.to_json()

# convert the object into a dict
test_step_create_dict = test_step_create_instance.to_dict()
# create an instance of TestStepCreate from a dict
test_step_create_form_dict = test_step_create.from_dict(test_step_create_dict)

[Back to Model list] [Back to API list] [Back to README]