- sunram_ramActive particpant
- Posts : 16
Join date : 2010-06-25
Start Selenium RC server using Java
Thu Jul 15, 2010 4:32 pm
Hi All,
I am able to do my tests when my Selenium RC Server is started. I am currently using command shell to start my Selenium RC Server as: java -jar selenium-server.jar.
But I want to handle this part in my coding.I am using Eclipse tool. Please let me know how can I start my Selenium Server programatically and how to call it in my test....
Thanks a lot in advance....!
I am able to do my tests when my Selenium RC Server is started. I am currently using command shell to start my Selenium RC Server as: java -jar selenium-server.jar.
But I want to handle this part in my coding.I am using Eclipse tool. Please let me know how can I start my Selenium Server programatically and how to call it in my test....
Thanks a lot in advance....!
- ghkarvir
- Posts : 1
Join date : 2010-07-15
This should work
Thu Jul 15, 2010 7:32 pm
Enjoy!!!
import org.openqa.selenium.server.RemoteControlConfiguration;
import org.openqa.selenium.server.SeleniumServer;
RemoteControlConfiguration rc;
rc = new RemoteControlConfiguration();
rc.setPort(4445);
SeleniumServer seleniumserver=new SeleniumServer(rc);
seleniumserver.boot();
seleniumserver.start();
seleniumserver.getPort();
//Selenium Client
selenium = new DefaultSelenium("localhost", 4445, "*iexplore","http://www.imdb.com/");
selenium.start();
selenium.open("/");
selenium.windowMaximize();
selenium.windowFocus();
import org.openqa.selenium.server.RemoteControlConfiguration;
import org.openqa.selenium.server.SeleniumServer;
RemoteControlConfiguration rc;
rc = new RemoteControlConfiguration();
rc.setPort(4445);
SeleniumServer seleniumserver=new SeleniumServer(rc);
seleniumserver.boot();
seleniumserver.start();
seleniumserver.getPort();
//Selenium Client
selenium = new DefaultSelenium("localhost", 4445, "*iexplore","http://www.imdb.com/");
selenium.start();
selenium.open("/");
selenium.windowMaximize();
selenium.windowFocus();
- sunram_ramActive particpant
- Posts : 16
Join date : 2010-06-25
Re: Start Selenium RC server using Java
Fri Jul 16, 2010 11:58 am
Hi ghkarvir,
Thanks a lot...! Got it...!
Thanks a lot...! Got it...!
- Start Selenium server
- error in eclipse java.lang.RuntimeException: Could not start Selenium session: null
- How do i start selenium server using python code
- Start Selenium RC server with cmd line option that never stop even it encounters error
- [error] Could not connect to Selenium Server. Have you started the Selenium Server yet?
Permissions in this forum:
You cannot reply to topics in this forum