Is it possible to create Selenium tests using the Firefox plugin that use randomly generated values to help do regression tests?
The full story: I w
Selenium RC gives you much more freedom than Selenium IDE, in that you can:
You asked how to enter some random value in a field using Selenium IDE, other people have answered you how to generate and enter random values in a field using Selenium RC. That falls into the testing phase (1): "Enter any value to a certain field".
Using Selenium RC you could easily do the phase (2) and (3): testing any field under any execution step by doing some programming in a supported language like Java, PHP, CSharp, Ruby, Perl, Python.
Following is the steps to do phase (2) and (3):
See my other answer about fuzzing test, Selenium and white/black box testing