Return a string representation of the step. Returns: str: A string representation of the step.
(self)
| 314 | self.docstring = docstring |
| 315 | |
| 316 | def __str__(self) -> str: |
| 317 | """Return a string representation of the step. |
| 318 | |
| 319 | Returns: |
| 320 | str: A string representation of the step. |
| 321 | """ |
| 322 | return f'{self.type.capitalize()} "{self.name}"' |
| 323 | |
| 324 | @staticmethod |
| 325 | def render_datatable(datatable: DataTable, context: Mapping[str, object]) -> DataTable: |
nothing calls this directly
no outgoing calls
no test coverage detected