Createrange
Creates a property that will iterate through range expression
on every subsequent call to resolve this property. This model
allows for you to iterate through range expressions without a
loop and introduces the ability to do so randomly using the
random() function of range expressions.
Required Attributes
name
The name of the property that will be used when
referencing this newly created range expression.
value
The value is a Range expression and the syntax for these
expressions is the following:
Optional Attributes
recycle
Defines if we want the range expression to reset upon
hitting the last element in the range.
Usage Examples
Example #1
<createrange name="range1" recycle="false" value="1..100000" />
Example #2
<createrange name="range2" value="a,b,c,d,e" />
Example #3
<createrange name="range3" value="[a,b,c,d,e][0..3]" />