views:

60

answers:

3

Hi Friends,

I downloaded Selenium IDE code.Now i want to start selenium IDE just by double clicking on it not as firefox plugin.Any Idea which helps me to start IDE as a desktop application is appreciated.Thanks in advance.

+1  A: 

It is a Firefox plugin, so you can't start it as a desktop application. You could launch Firefox from an icon and load it?

Selenium IDE is an integrated development environment for Selenium scripts. It is implemented as a Firefox extension

Paul
I know to start firefox and selenium IDE by creating shortcut on desktop.I want to write some code in IDE that makes Selenium IDE firefox independent.HOW can it be done.Any idea? Thanks in advance
farheen
You can't (or not without a huge amount of work). It's essentially an in-browser tool and requires a browser to operate. Currently that browser is Firefox, I guess in theory it could be replaced by some other browser but that would be a vast change. What do you wish to accomplish by having it as an independent tool? Why is it being dependent on Firefox an issue for you?
Paul
Its the given requirement from our company. I don't even know how to start with it...
farheen
What do you need to do with the Firefox independent Selenium IDE? It really isn't clear what you're asking for here. It doesn't make any sense for Selenium IDE to not be working with a browser. Do you need it to work with Internet Explorer? What do you expect to happen when you launch the Firefox-independent Selenium iDE?
Paul
It should be compatible with all the browsers and also support more features which are not supported by present IDE.
farheen
It should work with all the browsers but should not be firefox dependent ie as a plugin. My test cases should run in all browsers...
farheen
My point is, just seperate IDE from firefox ,rest the functinality of Selenium IDE should be same..
farheen
Then this is a huge project, and you should be talking to the Selenium iDE development team http://groups.google.com/group/selenium-developers?pli=1
Paul
thank you Paul...
farheen
A: 

Selenium IDE is a Firefox plug-in and can't be run stand-alone.

However, you can run Selenium Remote Control aka Selenium RC.

This in invoked by a command line parameter e.g.

java -jar selenium-server.jar

Just make a shortcut which you can then double-click.

Note: A quick way to get the Selenium RC basics is to load the Selenium IDE, capture your test, click "Options / Format" and then select the type of output you require. You can see a sample here

nzpcmad
A: 

As everyone has noted; Selenium IDE is a Firefox plugin and has no executable equivalent at this time; however, you could create a shortcut that launches the Selenium IDE as soon as Firefox launches.

You can do this by passing the Selenium IDE chrome XUL to the -chrome argument accepted by the Firefox executable:

"firefox.exe" -chrome chrome://selenium-ide/content/selenium-ide.xul"

On Windows, you could create a shortcut, place that snippet in the Target field, and then change the shortcut's icon. This could easily be automated by an installer. If you seriously need an executable, then there may be a Firefox Web Browser control, or something equivalent that you can embed in a window.

Chris Hutchinson
Again, as others have said, if you seriously need to decouple Selenium IDE from Firefox, then you have a massive project ahead of you.
Chris Hutchinson
Hi Chris,is it possible to decouple IDE from firefox using Firefox Web Browser control? ?
farheen
Hi,i'm ready to do that project of decoupling,but need experts help...
farheen
If you are using C#/VB.NET you could take a look at this project; I am not sure about plugin functionality. You may need to also embed/implement an XUL wrapper for .NET. http://code.google.com/p/geckofx/
Chris Hutchinson