Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a good IE-based Selenium IDE? [closed]

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?

like image 500
Jay Stevens Avatar asked Jun 09 '09 21:06

Jay Stevens


People also ask

Is Internet Explorer is supported by Selenium IDE?

Selenium does not have an IDE for Internet Explorer (any version).

What happened Selenium IDE?

On August 8, 2017, Firefox released version 55.0, and Selenium IDE officially died. From Firefox 55 onwards, Selenium IDE no longer worked. The Selenium testing world would never be the same. Some mourned, some cheered, but everyone had to come to grips with the fact that Selenium IDE was gone.


2 Answers

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

like image 186
s_hewitt Avatar answered Oct 02 '22 07:10

s_hewitt


While not a Selenium recorder, this is a utility that will help in writing code that uses Selenium to drive a web application or web site that only works in IE.

The utility will help retrieve the locator strings that are used in the Selenium APIs to refer to elements in the DOM.

like image 23
Madan Avatar answered Oct 02 '22 09:10

Madan