views:

51

answers:

2

Hi,

I'm currently evaluating Selenium and it seems I'll have to perform certain steps in my tests over and over again. Is there any way to wrap several steps from a selenium test into one single step which can be referenced by other tests?

It seems that this can be done with with custom coding as mentioned at in the UI-Element documentation, but I'd prefer to use the IDE if possible.

Thanks,

Adrian

+1  A: 

The only way to do this is to use Rollups (as mentioned in the UI-Element documentation) to combine several commands into a single command. Once rollups are written you can use them in Selenium IDE.

Dave Hunt
Actually there is a workaround, I described it here: http://devermind.com/testing/selenium-vs-coded-ui-my-perspective/
Adrian Grigore
+1  A: 

Actually there is a way. I added it to my blog article comparing Selenium to Coded UI

Adrian Grigore