I have a behave test where I would like to have part of the data inside a behave table to be generated after a step has executed. E.g.
Given I have a step
When I executed some other step
Then the message should have the following data
| field | value |
| a | 20 |
| b | 30 |
| var | <val> |
Once the when
step has been executed, I would like to modify <val>
to some value depending on that step.