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

I want to build the IDE for the Selenium for the recording and replaying in Internet Explorer same like the mozilla firefox. please suggest me any direction..

Thanks in advance

share|improve this question
You know what an IDE is? And you want us to tell you how to build one? I think the answer won't fit in one post. – CodeCaster Nov 17 '11 at 9:32
How hard can it be :P – albertjan Nov 17 '11 at 10:16
1  
I know what IDE is and i dont want from you to paste the entire code here..because of that i added line ""Please suggest me any direction"" – Abhijeet Bedagkar Nov 17 '11 at 10:40

closed as not constructive by CodeCaster, Rob, Jeremy McGee, Hans Passant, Bill the Lizard Nov 17 '11 at 12:10

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.

2 Answers

IMO why would you want to do that? You wont gain anything out of the exercise nor will you contribute in any way..

FYI, Selenium might soon stop rolling out new version of Selenium IDE.

Have you taken a look at Web Driver implementation? Combine it with the Page object pattern and you can write robut tests across browser and then run your selenium tests against various browsers.

share|improve this answer
Actually I have a product that runs only in the Internet Explorer not on any other Browser.. i have a team and i want to allow them to record the test from the Internet Explorer.. – Abhijeet Bedagkar Nov 17 '11 at 10:46
it doesnt matter if your product runs on IE.. you can still write tests without using any IDE.. if your team is finding it difficult to do so.. start recording using Selenium IDE on FFX then understand what the code is doing and start writing them for IE – Baz1nga Nov 17 '11 at 15:09
just see what code is generated when a link is clicked.. now you can write the same code yourself for any links you want to click on any browser – Baz1nga Nov 17 '11 at 15:10

Selenium IDE only works in Firefox. if your application doesnt work in Firefox then you will not be able to record tests. You can create tests by hand and run them through Selenium RC or Selenium WebDriver

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.