(self, data)
| 397 | return self |
| 398 | |
| 399 | def with_data(self, data) -> "RequestWithOptionalArgs": |
| 400 | self.__step.request.data = data |
| 401 | return self |
| 402 | |
| 403 | def with_json(self, req_json) -> "RequestWithOptionalArgs": |
| 404 | self.__step.request.req_json = req_json |
no outgoing calls
no test coverage detected