0

I am currently using Selenium RC to run my scripts in FF in windows. Could you tell me how to run the scripts in IE as well?

Priya
  • 11
  • 1
  • 1

2 Answers2

1

Your question is not very clear, but assuming you mean you are using the Selenium IDE Firefox plugin to create your tests, you will find this blog post helpful.

  • You need java installed.
  • If you're on Windows you probably need to run the command as administrator.

Then run the following command as administrator

java -jar selenium-server-standalone-2.0b3.jar -htmlSuite "*iexplore" 
   "http://www.google.com" "TestSuite.html" 
   "results.html" -port 4445  

where the parameter "*iexplore" specifies to use InternetExplorer.

shamp00
  • 11,106
  • 4
  • 38
  • 81
0

Instead of using *firefox or *chrome in your script , use *iexplore or *iexploreproxy

Harshavardhan Konakanchi
  • 4,238
  • 6
  • 36
  • 54