Could you please let me know the limitations od Selenium IDE, Selenium RC, Selenium GRID Thanks all for the help
closed as not constructive by Flexo♦, Brian Clozel, Don Roby, Mark, Riateche Dec 1 '12 at 16:43
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Don't expect Selenium to work as you expect it to 100% of the time. For instance, sometimes it doesn't know when the page has finished loading (because of AJAX running in the background). Other limitations: 1) It can't use a proxy to connect to any website That's because Selenium, technically is already a proxy, and you can't really configure it to go through another proxy (at least not that I know of) 2) Buggy with IE, Opera, and even Google Chrome For the most part, most of the functionality interacting with the GUI will work in Firefox. Not so much with the other browsers. |
|||
|
|
Selenium doesn't have an integrated spreadsheet for data driven testing (parameterization), always need to use external files for it. |
|||
|
|
|
I'm using Selenium-rc without a web-driver, and I see the following problem: very difficult with cross-browser, if you write tests for firefox, not the fact what that they will work in MS-IE or chrome. I think that Selenium two chose the wrong way, if each browser has its own implementation of the driver, I think will be compatibility problems. |
|||
|
|
|
One argument which I often here against Selenium is, it is only for web applications and can not be used for desktop application. |
|||
|
|
|
Selenium IDE does not allow for conditional statements, loops, assserting HTML. Selenium RC has problems with modal dialogs, yet there are hacks, it's not completely flexible for it. I'm also noticing that RC tests are not completely compatible with Selenium 2 using the python driver. Also agree with @Rusty Robot that not all tests are guaranteed compatible across browsers. With all that being said, I think Selenium will be around for a while as there is a lot of investment from Google. I remember seeing some number that throughout Google they have over 51K test scripts and an entire Server farm to run their tests. Just like any automated framework, there will be overhead and costs for maintenance, but overall I'm enjoying my experience with it. |
||||
|
|