Is it possible to write Selenium tests using the Firefox plugin

Is it possible to write Selenium tests using the Firefox plugin that use randomly generated values which can be used to do regression testing?

Hello Emma,

Selenium IDE is not used, it is limited. Try using Selenium RC with Java/ Perl/ Ruby or some other languages.BY

By using Selenium IDE, you can embed JavaScript expressions to derive command parameters. You will be able to type a random number into a text field, for example:

type fieldName javascript{Math.floor(Math.random()*11)}