up vote 3 down vote favorite
2
share [g+] share [fb]

I intend to test a web application with Selenium. I am think of carrying out a test with remote not Selenium IDE or carrying out a test on the same server with Selenium RC.

Please recommend a site or blog article to serve as a reference when I use Selenium IDE, Selenium RC.

link|improve this question

53% accept rate
feedback

3 Answers

There is a lot of documentation on the selenium website about how to use selenium. I tend to use the IDE client to record actions and then port the code for those actions into NUnit so I can run tests automatically on Selenium RC. You can port the code from Selenium IDE into a number of different languages for use on different testing frameworks. You can also manually run commands by directly typing them into the Selenium RC server.

There is a great guide here for learning how to use the IDE: http://seleniumhq.org/docs/03_selenium_ide.html

And a great guide for using the remote control over here: http://seleniumhq.org/docs/05_selenium_rc.html

It looks like they've recently updated the documentation on the Selenium website since last I've looked, so there is now a lot more information available.

Also, as a final note, I've used Selenium IDE to automate repetative tasks while that come up while testing during development. If you have any long forms your always filling out, make yourself a short test case you that fills out the form for you.

link|improve this answer
I actually discovered Selenium this way oddly enough. We use it properly for integration testing too of course, but it's a very handy tool for automation while developing as you discovered :) – Bayard Randel Sep 8 '09 at 3:12
feedback

http://www.theautomatedtester.co.uk/selenium_training.htm has a number of tutorials to get you going with examples in each of the different areas to make sure that you understand what you are doing.

link|improve this answer
feedback

From what i've understood, Watin might be a nicer choice.

link|improve this answer
Thanks!! But I love selenium – freddiefujiwara Jun 19 '09 at 10:10
@Mischa maybe you should actually, you know, use the tool before making a recommendation? – David Clarke Aug 10 '11 at 1:25
@David: Good point, don't know if I actually evaluated Selenium yet at time of writing. – Mischa Kroon Aug 10 '11 at 16:26
@Mischa just call me the ghost of SO Past ;-) – David Clarke Aug 11 '11 at 8:55
feedback

Your Answer

 
or
required, but never shown

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