vote up 1 vote down star
3

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 would like to help my clients do acceptance testing by providing them with a suite of tests that use some smarts to create random (or at least pseudo-random) values for the database. One of the issues with my Selenium IDE tests at the moment is that they have predefined values - which makes some types of testing problematic.

flag

68% accept rate

1 Answer

vote up 4 vote down check

First off, the Selenium IDE is rather limited, you should consider switching to Selenium RC, which can be driven by Java or Perl or Ruby or some other languages.

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

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

Update: You can define helper functions in a file called "user-extensions.js". See the Selenium Reference (all the way down, in Extending Selenium)

link|flag
I use RC for my own testing, but in this case I would like to give my client some assisted tests they can run through in their browser (without having to have a copy of the dev environment). – Toby Hede Oct 2 '08 at 13:05
Just thinking ... do you know if Selenium can call Javascript functions embedded in the page? I could build some functions to generate some values. – Toby Hede Oct 2 '08 at 13:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.