I'm a complete selenium newbie. Where should I start if I want to learn how to use it?
|
I've used Selenium in two different ways:
Pick one of the two ways and write a script to do something routine on the web (check for latest Hockey scores from NHL.com, etc). After you have that super-simple script running, try something more complex. |
|||
|
|
|
Download the firefox plugin to begin. You can record, replay some tests. There are some video tutorials. Look at this intro |
|||
|
|
|
Better idea, to start selenium IDE, which is record and playback method like other tools. Once familiar, then can start using selenium RC, Grid, Webdriver. Selenium IDE is firefox extension. more help http://seleniumhq.org/docs/02_selenium_ide.html |
|||
|
|
|
You can get this book Selenium 2 Testing Tools Beginner’s Guide. Really helpful book, especially for a newbie. I had a good experience, learning Selenium with it. |
|||
|
|
|
I would suggest to start from an overview automated web testing with selenium presentation on scribd |
|||
|
|
|
Really depends on what you want to do with Selenium. I definitely recommend getting Selenium IDE if you don't know what you're doing because it does most things automatically and gives you an intro to how you would use Selenium Remote Control. Selenium Remote Control lets you use Selenium from your favourite language. From there it depends on what language you want to use for where you get help. I use Java/JUnit and I just use google/documentation/stackoverflow whenever there's something I'm not sure how to do and that Selenium IDE won't tell me how to do. |
|||
|
|
|
Aside from the other suggestions on this page, one of the most useful sites I've used to get up to speed with Selenium was this one: Selenium Training from theautomatedtester.com He covers
However, I think I only needed those first few ones. Also, there are many extensions/addons/plug-ins for Selenium IDE, so be sure to check for any of those if you get stuck in some way. For example, I thought I needed to start using the Selenium Remote Control (and code in C#) because I wanted to create tests with logical flows and loops...but there is a plug-in for incorporating that in the IDE (goto & while loops extension), so I didn't need to! Hope this helps! |
|||
|
|
|
Where to start? Go to: http://seleniumhq.org/docs/ Read the docs from the beginning to the end. Estimated time 8 hours. |
||||
|
|