Is there a way to build a Selenium-IDE Test-Siute so that in each run some text will be renamed?
Say I have a test-suite that creates a simple form in each run. By default, selenium will create one form with the initial name, say "form1", and in the 2nd run will get an error since a form in this name already exists. (Suppose the system does not allow 2 forms with the same names..). I'd like selenium to create each time a new form with other name (don't care if incremented or randomized..)
Thanks.