teststep data, each step maybe corresponding to one request or one testcase
| 245 | |
| 246 | |
| 247 | class StepResult(BaseModel): |
| 248 | """teststep data, each step maybe corresponding to one request or one testcase""" |
| 249 | |
| 250 | name: Text = "" # teststep name |
| 251 | step_type: Text = "" # teststep type, request or testcase |
| 252 | success: bool = False |
| 253 | data: Union[SessionData, List["StepResult"]] = None |
| 254 | elapsed: float = 0.0 # teststep elapsed time |
| 255 | content_size: float = 0 # response content size |
| 256 | export_vars: VariablesMapping = {} |
| 257 | attachment: Text = "" # teststep attachment |
| 258 | |
| 259 | |
| 260 | StepResult.update_forward_refs() |
no outgoing calls