Minor changes are by default collapsed in the page history.
No changes
The page does not exist yet.
Failed to load changes
Version by on
Leave Collaboration
Are you sure you want to leave the realtime collaboration and continue editing alone? The changes you save while editing alone will lead to merge conflicts with the changes auto-saved by the realtime editing session.
Using random variables in SilkPerformer scripts
You can modify a recorded script to provide dynamic and random input. For example, to randomize the entry selection from an AR Systemtable, parse the available entries into an array, and then randomly select an element from that array. From the known array length, randomly pick an element from 1 to the array length value:
gnElementNum := RndUniN(1..gnTotalRequests);
Then replace the entry request ID value with the array element: