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

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.

share|improve this question
You better to use Selenium 2 (which is known as WebDriver) instead of Selenium RC (also known as Selenium 1) – Ripon Al Wasim Nov 22 '12 at 4:07

6 Answers

up vote 2 down vote accepted

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

share|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

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.

share|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

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.

share|improve this answer

You can learn Selenium IDE, Selenium RC and WebDriver (Selenium 2) from the following URL:

http://seleniumhq.org/docs/

For Advanced features and download Selenium follow the URL below:

http://code.google.com/p/selenium/

share|improve this answer

I have a course, I created on Pluralsight that walks you through the basics of using Selenium.

http://pluralsight.com/training/Courses/TableOfContents/selenium

share|improve this answer

Selenium webdriver scripts can be written in C#. If your strength is .Net or C# , best was is to create automated test cases using selenium, C# and nUnit. Below are few links you can check for more information

How to setup C#,nUnit and selenium client drivers on VSExpress for Automated tests

Creating Basic Selenium web driver test case using Nunit and C#

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.