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

牧云@^-^@ 提交于 2019-11-28 20:10:21

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

Madan

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.

I know this is an old post, but there is a product called testmaker which does exactly what you are looking for. The company was purchased, and it looks like there new products are no longer free, but there are still links to the free community edition of testmaker on their site

http://www.pushtotest.com/testmaker-6-community-download

I know this is old, but i would like to add another solution, i said this on the Selenium IRC and no one knew it was possible. Anyway, there's another way of automating on IE using the old FF IDE(2.9.1), and that's how I'm currently automating on IE8. Prerequisites:

-FF 54 or older

-Selenium IDE 2.9.1

-selenium-server-standalone-2.53.1.jar

-IEDriverServer

Start the selenium server with the following command on the windows cmd(press windows key+R and write cmd):

java -jar c:\selenium\selenium-server-standalone-2.53.1.jar -Dwebdriver.ie.driver=IEDriverServer.exe

In this example, my files where in c:\selenium, so adapt to it to where you have the files. Once the server is up, open the FF IDE, go to the options, in the last tab "WebDriver", mark the option "Enable WebDriver Playback", and in the field bellow, delete all if there's any text in it and write:

internet explorer

Save the changes. Now you can run your tests in the IE. Note that you can't record or execute single commands of your scripts this way on IE, this only allows you to run your scripts on IE. You can record them on FF and them run it on IE.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!