views:

768

answers:

2

I need to develop Web functional testing for an application that currently supports only IE 7+. I'd also like to have my tests exported in Java so that I can have them integrated with my Java codebase

+1  A: 

Selenium RC can run on IE 7 and you can do more with it because you can write the tests in high-level languages like Java and Ruby.

shambleh
+3  A: 

You can record tests in Selenium IDE on Firefox and then export them to Java (File > Export Test Case As...). You can then using a testing framework such as JUnit or TestNG to run your tests with Selenium RC. To test in Internet Explorer 7, set your browser string to *iexplore (HTA mode) or *iexploreproxy and run the RC on a machine with version 7 installed.

Dave Hunt