Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to create a test for homework using Selenium IDE and create a scenario to generate a random number. I'm stuggling with what I need to type and what field to type in.

What should I type in?: Command Target Value

Thanks

share|improve this question
2  
What language? What have you tried? – Brendan Long May 14 '10 at 0:12
is this for INF115? – Mitch Dempsey May 14 '10 at 0:22

3 Answers

alt text

alt text

share|improve this answer
1  
AH hahaha what a perfect response. – Mitch Dempsey May 14 '10 at 0:41
This made my day, thank you! – Mathias May 14 '10 at 1:04

Yes, you can generate random numbers in Selenium: http://stackoverflow.com/questions/161984/using-selenium-ide-with-random-values

share|improve this answer
+1 for a real answer. – jrockway May 14 '10 at 5:54

i always use this to create random username and e-mails

storeEval > Math.round (Math.random() * 1357) > random
type > id=UserName > selenium${random}

and

storeEval > Math.round (Math.random() * 1357) > random
type > id=UserEmail > selenium${random}@am.com

i hope they can help you

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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