views:

5018

answers:

1

The SeleniumIDE project is based on Firefox (and its plugin architecture). My application (for a variety of reasons) only runs on Internet Explorer (6+). In fact, we actively check for non-IE browsers and do an immediate redirect.

This is a 6 yr old codebase and we're trying to remove all of the html idiosyncrasies that necessitate our IE dependence.

We've already got a robust and growing set of NUNIT tests for code. We would like to add Selenium to do Web functional testing. Is there a good IDE for building/recording Selenium tests using IE as the browser?

+9  A: 

Selenium does not have an IDE for Internet Explorer (any version). I haven't seen any under development either. You can check their boards/site for updates but I their primary focus is FireFox for the IDE.

Selenium can run tests in Internet Explorer (including IE6) using the SeleniumRC. You can record tests with the IDE in FireFox (or write tests in whatever language they support) and then use SeleniumRC to launch IE and run the tests.

For Internet Explorer IDEs similar to what Selenium gives in FireFox, check out WatiN

s_hewitt
I'll explore it, but for now, this answer is non-responsive to the question isn't it? Unless I'm missing something WatiN generates its own C# code and doesn't generate Selenium tests.
Jay Stevens
Maybe you can consider it as, "I don't know, but here's something that may help." I wouldn't call it non-responsive.
Kekoa
Sorry. In the contracting world, when responding to an RFP for example, if you don't answer the questions/requirement but kind of redirect to something else that you have more experience with, its called being "non-responsive" to the requirements/question. That's the sense I was using it in.
Jay Stevens
Sorry I mis-read the question. I thought you were looking for an IDE similar to Selenium for IE. There is no IE IDE for Selenium that I'm aware of.
s_hewitt
+1 for "Selenium does not have an IDE for Internet Explorer (any version)" which, I think, is answering the question asked.
Grundlefleck