1

Is it possible to set up a variable within the test suite so that it can be passed down to the setup fit page as a parameter value?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131

2 Answers2

2

Sure. Use a !define xxx {yyy} on the suite page and a ${xxx} on the SetUp page. Make sure the SetUp page and all the test pages are children of the Suite page.

Uncle Bob
  • 4,690
  • 29
  • 19
0

Have a look at the FlowFixture, this contains the keyword name.

More info at: http://www.syterra.com/FitnesseDotNet/NameKeyword.html

Jochen
  • 1,488
  • 16
  • 21