0

I want to run my selenium RC test case which is backed with JUnit4 on multiple browsers. How am i supposed to run it? what configurations should be done in:

**

public void setUp() throws Exception { selenium = new DefaultSelenium("localhost", 4444, "*firefox", "http://(some URL)"); selenium.start(); }

**

Ripon Al Wasim
  • 36,924
  • 42
  • 155
  • 176
Milind_open_source
  • 141
  • 1
  • 2
  • 11

1 Answers1

0
public void setUp() throws Exception { selenium = new DefaultSelenium("localhost", 4444, "*iexplore", "http://(some URL)"); selenium.start(); }


public void setUp() throws Exception { selenium = new DefaultSelenium("localhost", 4444, "*opera", "http://(some URL)"); selenium.start(); }

public void setUp() throws Exception { selenium = new DefaultSelenium("localhost", 4444, "*custom", "http://(some URL)"); selenium.start(); }

check http://seleniumhq.org/docs/05_selenium_rc.html for custom browser in selenium

Arian
  • 3,183
  • 5
  • 30
  • 58