Selenium IDE have limitations in terms of language support (Only Selenese - InBuilt Selenium Commands) and browser support (Firefox only) . These limitations can be diminished by using Selenium Remote Control. Selenium RC is a java server which allows you to interact with the web application using any language. Your script ( If not hosted along with your application on the server) can not talk to your web application directly because of the security restrictions enforced by browser ( Same origin policy ). Using selenium server, you can bypass this restriction and have your automation scripts running against any web application. There are still some limitations, for example crossing domain boundaries, using it for https etc., but you can find solutions for most of them. perl AutomationScript.pl ruby AutomationScript.rb And so on.. Though you can write your automation scripts using Selenium RC alone, we have found it very easy to start with Seleinum IDE and export test cases in specific language. Once you have basic test case, you can use language specific features to customize them and making them more robust. Hope this document will help you all ! ! ! |
Here I have listed out some good blogs and sites by extensive selenium automation users. Hope these will help you a lot. http://automationtricks.blogspot.com - by NirajKumar http://www.theautomatedtester.co.uk/ http://testerinyou.blogspot.com - by Naga/Mathu http://seleniumready.blogspot.com - by Farheen Khan http://seleniumdeal.blogspot.com/ - Amit Vibhuti http://seleniumexamples.com/blog Sauce Labs and BrowserMob are companies doing cloud and extensive selenium automation services, products, etc http://saucelabs.com/blog http://blog.browsermob.com http://testingbot.com/ Cedric Beust - creator of the TestNG Java testing framework. http://beust.com/weblog/ http://blog.reallysimplethoughts.com/ - by Samit Badle, Created many Selenium IDE Plug-Ins Available Colud Testing: 1. SauceLabs 2. Soasta 3. BrowserMob 4. CloudTesting.com etc. Selenium Testing Products: 1. Twist by ThoughtWorks 2. TestMaker by...
Comments
Post a Comment