Does FitNesse with Fit (not Slim) support something like?
...
| mySymbol=myMethod | |
...
!define myVariable {some text mySymbol= more text}
So that I can late use myVariable like
| anotherMethod | ${myVariable} |
as a parameter of another method.
My current solution is similar to this: https://stackoverflow.com/a/11686585/6685089
Is there a build in syntax in Fit to such a scenario?