Can you explain how Selenium IDE handles stored variables (stored text) and random numbers? I've been trying to combine the two without much success.
For example:
<td>type<td>
<td>css=input.some-text</td>
<td>javascript{'storedVars.variable'
+Number(Math.random(storedVars.rand)*100).toPrecision(2));}</td>
The current output only shows storedVars.variable due to a field limit.
I'm hoping to get the actual variable value along with the random number, like text53.
Any assistance on this issue would be highly appreciated.